From f4443f3b1c6dd70b6b22470a7d5f8796175aace3 Mon Sep 17 00:00:00 2001 From: Kevin Newton Date: Fri, 8 Sep 2023 15:46:44 -0400 Subject: [PATCH] [ruby/yarp] Increment version https://github.com/ruby/yarp/commit/2b41ceb754 --- lib/yarp/yarp.gemspec | 2 +- yarp/extension.h | 2 +- yarp/templates/lib/yarp/serialize.rb.erb | 2 +- yarp/version.h | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/yarp/yarp.gemspec b/lib/yarp/yarp.gemspec index 0cd1cf2f66..e96cb8d403 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.10.0" + spec.version = "0.11.0" spec.authors = ["Shopify"] spec.email = ["ruby@shopify.com"] diff --git a/yarp/extension.h b/yarp/extension.h index ccfb6f9454..ebcb3d614f 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.10.0" +#define EXPECTED_YARP_VERSION "0.11.0" #include #include diff --git a/yarp/templates/lib/yarp/serialize.rb.erb b/yarp/templates/lib/yarp/serialize.rb.erb index 3f5329e3a9..370453565c 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 = 10 + MINOR_VERSION = 11 PATCH_VERSION = 0 def self.load(input, serialized) diff --git a/yarp/version.h b/yarp/version.h index 60fd830ca7..6c7dd068d3 100644 --- a/yarp/version.h +++ b/yarp/version.h @@ -1,4 +1,4 @@ #define YP_VERSION_MAJOR 0 -#define YP_VERSION_MINOR 10 +#define YP_VERSION_MINOR 11 #define YP_VERSION_PATCH 0 -#define YP_VERSION "0.10.0" +#define YP_VERSION "0.11.0"