[ruby/yarp] Bump to version 0.9.0

https://github.com/ruby/yarp/commit/b327e39527
This commit is contained in:
Kevin Newton 2023-08-25 20:17:14 -04:00 committed by git
parent b054c2fe06
commit e2b8eac767
5 changed files with 6 additions and 6 deletions

View File

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

View File

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

View File

@ -60,7 +60,7 @@ public class Loader {
expect((byte) 'P');
expect((byte) 0);
expect((byte) 8);
expect((byte) 9);
expect((byte) 0);
// This loads the name of the encoding. We don't actually do anything

View File

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

View File

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