This commit is contained in:
Kevin Newton 2024-08-28 15:43:32 -04:00
Родитель 45f32e3a50
Коммит ad737a8d0f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 0EAD74C79EC73F26
4 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

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

Просмотреть файл

@ -1,7 +1,7 @@
#ifndef PRISM_EXT_NODE_H
#define PRISM_EXT_NODE_H
#define EXPECTED_PRISM_VERSION "0.30.0"
#define EXPECTED_PRISM_VERSION "1.0.0"
#include <ruby.h>
#include <ruby/encoding.h>

Просмотреть файл

@ -6,11 +6,11 @@ module Prism
module Serialize
# The major version of prism that we are expecting to find in the serialized
# strings.
MAJOR_VERSION = 0
MAJOR_VERSION = 1
# The minor version of prism that we are expecting to find in the serialized
# strings.
MINOR_VERSION = 30
MINOR_VERSION = 0
# The patch version of prism that we are expecting to find in the serialized
# strings.

Просмотреть файл

@ -9,12 +9,12 @@
/**
* The major version of the Prism library as an int.
*/
#define PRISM_VERSION_MAJOR 0
#define PRISM_VERSION_MAJOR 1
/**
* The minor version of the Prism library as an int.
*/
#define PRISM_VERSION_MINOR 30
#define PRISM_VERSION_MINOR 0
/**
* The patch version of the Prism library as an int.
@ -24,6 +24,6 @@
/**
* The version of the Prism library as a constant string.
*/
#define PRISM_VERSION "0.30.0"
#define PRISM_VERSION "1.0.0"
#endif