From bd440bf85d6eff5ecf5132e93a0721cfcd38e5a5 Mon Sep 17 00:00:00 2001 From: Kevin Newton Date: Fri, 18 Aug 2023 21:02:32 -0400 Subject: [PATCH] [ruby/yarp] Bump to version 0.8.0 https://github.com/ruby/yarp/commit/bfde753702 --- lib/yarp/yarp.gemspec | 2 +- yarp/extension.h | 2 +- yarp/templates/java/org/yarp/Loader.java.erb | 2 +- yarp/templates/lib/yarp/serialize.rb.erb | 2 +- yarp/version.h | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/yarp/yarp.gemspec b/lib/yarp/yarp.gemspec index f32cd4b6ab..db69bcb451 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.7.0" + spec.version = "0.8.0" spec.authors = ["Shopify"] spec.email = ["ruby@shopify.com"] diff --git a/yarp/extension.h b/yarp/extension.h index 12381317dc..75d5cc84a7 100644 --- a/yarp/extension.h +++ b/yarp/extension.h @@ -5,7 +5,7 @@ #include #include "yarp.h" -#define EXPECTED_YARP_VERSION "0.7.0" +#define EXPECTED_YARP_VERSION "0.8.0" VALUE yp_source_new(yp_parser_t *parser); VALUE yp_token_new(yp_parser_t *parser, yp_token_t *token, rb_encoding *encoding, VALUE source); diff --git a/yarp/templates/java/org/yarp/Loader.java.erb b/yarp/templates/java/org/yarp/Loader.java.erb index f78770508a..454f5f3075 100644 --- a/yarp/templates/java/org/yarp/Loader.java.erb +++ b/yarp/templates/java/org/yarp/Loader.java.erb @@ -49,7 +49,7 @@ public class Loader { private final Nodes.Source source; private byte MAJOR_VERSION = (byte) 0; - private byte MINOR_VERSION = (byte) 7; + private byte MINOR_VERSION = (byte) 8; private byte PATCH_VERSION = (byte) 0; private Loader(byte[] serialized, Nodes.Source source) { diff --git a/yarp/templates/lib/yarp/serialize.rb.erb b/yarp/templates/lib/yarp/serialize.rb.erb index 4194025c32..65cd52e238 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 = 7 + MINOR_VERSION = 8 PATCH_VERSION = 0 def self.load(input, serialized) diff --git a/yarp/version.h b/yarp/version.h index a798d76c7a..179543f54d 100644 --- a/yarp/version.h +++ b/yarp/version.h @@ -1,4 +1,4 @@ #define YP_VERSION_MAJOR 0 -#define YP_VERSION_MINOR 7 +#define YP_VERSION_MINOR 8 #define YP_VERSION_PATCH 0 -#define YP_VERSION "0.7.0" +#define YP_VERSION "0.8.0"