summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Newton <kddnewton@gmail.com>2023-08-18 21:02:32 -0400
committergit <svn-admin@ruby-lang.org>2023-08-19 01:14:10 +0000
commitbd440bf85d6eff5ecf5132e93a0721cfcd38e5a5 (patch)
treedfbcf3eab7be5e611b91737e93cdd2ec6c1d8127
parent1d0b627b708909d6e428e1ca6bfd565faf120f99 (diff)
[ruby/yarp] Bump to version 0.8.0
https://github.com/ruby/yarp/commit/bfde753702
-rw-r--r--lib/yarp/yarp.gemspec2
-rw-r--r--yarp/extension.h2
-rw-r--r--yarp/templates/java/org/yarp/Loader.java.erb2
-rw-r--r--yarp/templates/lib/yarp/serialize.rb.erb2
-rw-r--r--yarp/version.h4
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 <ruby/encoding.h>
#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"