diff options
author | Kevin Newton <[email protected]> | 2023-10-30 12:35:39 -0400 |
---|---|---|
committer | Kevin Newton <[email protected]> | 2023-10-30 12:35:39 -0400 |
commit | b413760d66e4de5670148b01a6a2076452a2f757 (patch) | |
tree | 0fc30790ac5b001316fd854a20bae25dbfd4d05b | |
parent | a7a70bce82e6335f034951a1422bc372d8225df4 (diff) |
[prism] Update prism to latest
-rw-r--r-- | lib/prism/prism.gemspec | 3 | ||||
-rw-r--r-- | prism/extension.h | 2 | ||||
-rw-r--r-- | prism/templates/lib/prism/serialize.rb.erb | 4 | ||||
-rw-r--r-- | prism/version.h | 6 |
4 files changed, 8 insertions, 7 deletions
diff --git a/lib/prism/prism.gemspec b/lib/prism/prism.gemspec index 76f5237783..f93035aa18 100644 --- a/lib/prism/prism.gemspec +++ b/lib/prism/prism.gemspec @@ -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 = ["[email protected]"] @@ -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", diff --git a/prism/extension.h b/prism/extension.h index e881d89b8e..45d446bc40 100644 --- a/prism/extension.h +++ b/prism/extension.h @@ -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> diff --git a/prism/templates/lib/prism/serialize.rb.erb b/prism/templates/lib/prism/serialize.rb.erb index 7f8b61ddfe..4ee474671a 100644 --- a/prism/templates/lib/prism/serialize.rb.erb +++ b/prism/templates/lib/prism/serialize.rb.erb @@ -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 diff --git a/prism/version.h b/prism/version.h index 55ed5da703..9a72a1dbdf 100644 --- a/prism/version.h +++ b/prism/version.h @@ -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" |