diff options
| author | Kevin Newton <kddnewton@gmail.com> | 2023-09-29 11:20:30 -0400 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2023-09-29 15:21:50 +0000 |
| commit | be63e2515b180c962e4347ce4feda70a0659cac7 (patch) | |
| tree | 206b33c9fca0784924413481dcbbf497faca63cd | |
| parent | 100ce34331c40eed7039233a15d80e8efa5a1ac3 (diff) | |
[ruby/prism] Bump version
https://github.com/ruby/prism/commit/3e44415ca2
| -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 af2555247f..c94f3cf779 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.12.0" + spec.version = "0.13.0" spec.authors = ["Shopify"] spec.email = ["ruby@shopify.com"] diff --git a/prism/extension.h b/prism/extension.h index 1efece97f1..13753f16bb 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.12.0" +#define EXPECTED_PRISM_VERSION "0.13.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 06ee8789b1..52fe811a5a 100644 --- a/prism/templates/lib/prism/serialize.rb.erb +++ b/prism/templates/lib/prism/serialize.rb.erb @@ -14,7 +14,7 @@ end module Prism module Serialize MAJOR_VERSION = 0 - MINOR_VERSION = 12 + MINOR_VERSION = 13 PATCH_VERSION = 0 def self.load(input, serialized) diff --git a/prism/version.h b/prism/version.h index 79686b5f3e..ba63d0a5d2 100644 --- a/prism/version.h +++ b/prism/version.h @@ -1,4 +1,4 @@ #define PRISM_VERSION_MAJOR 0 -#define PRISM_VERSION_MINOR 12 +#define PRISM_VERSION_MINOR 13 #define PRISM_VERSION_PATCH 0 -#define PRISM_VERSION "0.12.0" +#define PRISM_VERSION "0.13.0" |
