diff options
| author | Kevin Newton <kddnewton@gmail.com> | 2023-09-15 20:27:02 -0400 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2023-09-16 00:32:52 +0000 |
| commit | 7f96c9be9e998adb0f9db751bf9cd65c157c1bd7 (patch) | |
| tree | ea9ad9453fecb486ddc8e4d7af3bb3319278906a | |
| parent | 43ab2acf8242c580b1ef5d644ea94d48669d4869 (diff) | |
[ruby/yarp] Bump to version 0.12.0
https://github.com/ruby/yarp/commit/c71137377f
| -rw-r--r-- | lib/yarp/yarp.gemspec | 2 | ||||
| -rw-r--r-- | yarp/extension.h | 2 | ||||
| -rw-r--r-- | yarp/templates/lib/yarp/serialize.rb.erb | 2 | ||||
| -rw-r--r-- | yarp/version.h | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/lib/yarp/yarp.gemspec b/lib/yarp/yarp.gemspec index e96cb8d403..186ce7556d 100644 --- a/lib/yarp/yarp.gemspec +++ b/lib/yarp/yarp.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |spec| spec.name = "yarp" - spec.version = "0.11.0" + spec.version = "0.12.0" spec.authors = ["Shopify"] spec.email = ["ruby@shopify.com"] diff --git a/yarp/extension.h b/yarp/extension.h index ebcb3d614f..ab84a72f64 100644 --- a/yarp/extension.h +++ b/yarp/extension.h @@ -1,7 +1,7 @@ #ifndef YARP_EXT_NODE_H #define YARP_EXT_NODE_H -#define EXPECTED_YARP_VERSION "0.11.0" +#define EXPECTED_YARP_VERSION "0.12.0" #include <ruby.h> #include <ruby/encoding.h> diff --git a/yarp/templates/lib/yarp/serialize.rb.erb b/yarp/templates/lib/yarp/serialize.rb.erb index 370453565c..8b02fab40a 100644 --- a/yarp/templates/lib/yarp/serialize.rb.erb +++ b/yarp/templates/lib/yarp/serialize.rb.erb @@ -14,7 +14,7 @@ end module YARP module Serialize MAJOR_VERSION = 0 - MINOR_VERSION = 11 + MINOR_VERSION = 12 PATCH_VERSION = 0 def self.load(input, serialized) diff --git a/yarp/version.h b/yarp/version.h index 6c7dd068d3..6dc8efd1c7 100644 --- a/yarp/version.h +++ b/yarp/version.h @@ -1,4 +1,4 @@ #define YP_VERSION_MAJOR 0 -#define YP_VERSION_MINOR 11 +#define YP_VERSION_MINOR 12 #define YP_VERSION_PATCH 0 -#define YP_VERSION "0.11.0" +#define YP_VERSION "0.12.0" |
