[ruby/yarp] Bump to version 0.8.0

https://github.com/ruby/yarp/commit/bfde753702
This commit is contained in:
Kevin Newton 2023-08-18 21:02:32 -04:00 committed by git
parent 1d0b627b70
commit bd440bf85d
5 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
Gem::Specification.new do |spec| Gem::Specification.new do |spec|
spec.name = "yarp" spec.name = "yarp"
spec.version = "0.7.0" spec.version = "0.8.0"
spec.authors = ["Shopify"] spec.authors = ["Shopify"]
spec.email = ["ruby@shopify.com"] spec.email = ["ruby@shopify.com"]

View File

@ -5,7 +5,7 @@
#include <ruby/encoding.h> #include <ruby/encoding.h>
#include "yarp.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_source_new(yp_parser_t *parser);
VALUE yp_token_new(yp_parser_t *parser, yp_token_t *token, rb_encoding *encoding, VALUE source); VALUE yp_token_new(yp_parser_t *parser, yp_token_t *token, rb_encoding *encoding, VALUE source);

View File

@ -49,7 +49,7 @@ public class Loader {
private final Nodes.Source source; private final Nodes.Source source;
private byte MAJOR_VERSION = (byte) 0; 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 byte PATCH_VERSION = (byte) 0;
private Loader(byte[] serialized, Nodes.Source source) { private Loader(byte[] serialized, Nodes.Source source) {

View File

@ -14,7 +14,7 @@ end
module YARP module YARP
module Serialize module Serialize
MAJOR_VERSION = 0 MAJOR_VERSION = 0
MINOR_VERSION = 7 MINOR_VERSION = 8
PATCH_VERSION = 0 PATCH_VERSION = 0
def self.load(input, serialized) def self.load(input, serialized)

View File

@ -1,4 +1,4 @@
#define YP_VERSION_MAJOR 0 #define YP_VERSION_MAJOR 0
#define YP_VERSION_MINOR 7 #define YP_VERSION_MINOR 8
#define YP_VERSION_PATCH 0 #define YP_VERSION_PATCH 0
#define YP_VERSION "0.7.0" #define YP_VERSION "0.8.0"