[ruby/yarp] Bump to v0.10.0

https://github.com/ruby/yarp/commit/b6164a76d9
This commit is contained in:
Kevin Newton 2023-09-01 16:42:37 -04:00 committed by git
parent 95def300d2
commit 1c622a6b58
4 changed files with 5 additions and 5 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.9.0" spec.version = "0.10.0"
spec.authors = ["Shopify"] spec.authors = ["Shopify"]
spec.email = ["ruby@shopify.com"] spec.email = ["ruby@shopify.com"]

View File

@ -1,7 +1,7 @@
#ifndef YARP_EXT_NODE_H #ifndef YARP_EXT_NODE_H
#define YARP_EXT_NODE_H #define YARP_EXT_NODE_H
#define EXPECTED_YARP_VERSION "0.9.0" #define EXPECTED_YARP_VERSION "0.10.0"
#include <ruby.h> #include <ruby.h>
#include <ruby/encoding.h> #include <ruby/encoding.h>

View File

@ -14,7 +14,7 @@ end
module YARP module YARP
module Serialize module Serialize
MAJOR_VERSION = 0 MAJOR_VERSION = 0
MINOR_VERSION = 9 MINOR_VERSION = 10
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 9 #define YP_VERSION_MINOR 10
#define YP_VERSION_PATCH 0 #define YP_VERSION_PATCH 0
#define YP_VERSION "0.9.0" #define YP_VERSION "0.10.0"