This commit is contained in:
Kevin Newton 2023-11-03 13:59:07 -04:00
Родитель dd0330249e
Коммит 5a132c7864
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 0EAD74C79EC73F26
4 изменённых файлов: 5 добавлений и 5 удалений

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

@ -2,7 +2,7 @@
Gem::Specification.new do |spec|
spec.name = "prism"
spec.version = "0.17.0"
spec.version = "0.17.1"
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.17.0"
#define EXPECTED_PRISM_VERSION "0.17.1"
#include <ruby.h>
#include <ruby/encoding.h>

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

@ -24,7 +24,7 @@ module Prism
# The patch version of prism that we are expecting to find in the serialized
# strings.
PATCH_VERSION = 0
PATCH_VERSION = 1
# Deserialize the AST represented by the given string into a parse result.
def self.load(input, serialized)

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

@ -19,11 +19,11 @@
/**
* The patch version of the Prism library as an int.
*/
#define PRISM_VERSION_PATCH 0
#define PRISM_VERSION_PATCH 1
/**
* The version of the Prism library as a constant string.
*/
#define PRISM_VERSION "0.17.0"
#define PRISM_VERSION "0.17.1"
#endif