[prism] Update prism to latest

This commit is contained in:
Kevin Newton 2023-10-30 12:35:39 -04:00
parent a7a70bce82
commit b413760d66
No known key found for this signature in database
GPG Key ID: 0EAD74C79EC73F26
4 changed files with 8 additions and 7 deletions

View File

@ -2,7 +2,7 @@
Gem::Specification.new do |spec|
spec.name = "prism"
spec.version = "0.15.1"
spec.version = "0.16.0"
spec.authors = ["Shopify"]
spec.email = ["ruby@shopify.com"]
@ -31,6 +31,7 @@ Gem::Specification.new do |spec|
"docs/javascript.md",
"docs/mapping.md",
"docs/prism.png",
"docs/releasing.md",
"docs/ripper.md",
"docs/ruby_api.md",
"docs/serialization.md",

View File

@ -1,7 +1,7 @@
#ifndef PRISM_EXT_NODE_H
#define PRISM_EXT_NODE_H
#define EXPECTED_PRISM_VERSION "0.15.1"
#define EXPECTED_PRISM_VERSION "0.16.0"
#include <ruby.h>
#include <ruby/encoding.h>

View File

@ -14,8 +14,8 @@ end
module Prism
module Serialize
MAJOR_VERSION = 0
MINOR_VERSION = 15
PATCH_VERSION = 1
MINOR_VERSION = 16
PATCH_VERSION = 0
def self.load(input, serialized)
input = input.dup

View File

@ -1,4 +1,4 @@
#define PRISM_VERSION_MAJOR 0
#define PRISM_VERSION_MINOR 15
#define PRISM_VERSION_PATCH 1
#define PRISM_VERSION "0.15.1"
#define PRISM_VERSION_MINOR 16
#define PRISM_VERSION_PATCH 0
#define PRISM_VERSION "0.16.0"