diff options
| author | Kevin Newton <kddnewton@gmail.com> | 2023-11-03 13:59:07 -0400 |
|---|---|---|
| committer | Kevin Newton <kddnewton@gmail.com> | 2023-11-03 13:59:07 -0400 |
| commit | 5a132c78641c252a7b04ca8a5a493fe7d5ce8bab (patch) | |
| tree | 82af98af4a898a06ba9856cb4e2841d19cc43c6d | |
| parent | dd0330249e1f96467e37c80436445fb74b953a30 (diff) | |
Update prism to v0.17.1
| -rw-r--r-- | lib/prism/prism.gemspec | 2 | ||||
| -rw-r--r-- | prism/extension.h | 2 | ||||
| -rw-r--r-- | prism/templates/lib/prism/serialize.rb.erb | 2 | ||||
| -rw-r--r-- | prism/version.h | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/lib/prism/prism.gemspec b/lib/prism/prism.gemspec index 8031f40cb1..ef23a46194 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.17.0" + spec.version = "0.17.1" spec.authors = ["Shopify"] spec.email = ["ruby@shopify.com"] diff --git a/prism/extension.h b/prism/extension.h index fb629de2eb..4803aabe5e 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.17.0" +#define EXPECTED_PRISM_VERSION "0.17.1" #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 e31e514743..2837504543 100644 --- a/prism/templates/lib/prism/serialize.rb.erb +++ b/prism/templates/lib/prism/serialize.rb.erb @@ -24,7 +24,7 @@ module Prism # The patch version of prism that we are expecting to find in the serialized # strings. - PATCH_VERSION = 0 + PATCH_VERSION = 1 # Deserialize the AST represented by the given string into a parse result. def self.load(input, serialized) diff --git a/prism/version.h b/prism/version.h index 37ac3b76a7..6d0bea616d 100644 --- a/prism/version.h +++ b/prism/version.h @@ -19,11 +19,11 @@ /** * The patch version of the Prism library as an int. */ -#define PRISM_VERSION_PATCH 0 +#define PRISM_VERSION_PATCH 1 /** * The version of the Prism library as a constant string. */ -#define PRISM_VERSION "0.17.0" +#define PRISM_VERSION "0.17.1" #endif |
