Skip to content

Commit 9c65da0

Browse files
authored
Bump Prism version to 1.5.1 (ruby#14549)
1 parent 09c0670 commit 9c65da0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

lib/prism/prism.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |spec|
44
spec.name = "prism"
5-
spec.version = "1.5.0"
5+
spec.version = "1.5.1"
66
spec.authors = ["Shopify"]
77
spec.email = ["[email protected]"]
88

prism/extension.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef PRISM_EXT_NODE_H
22
#define PRISM_EXT_NODE_H
33

4-
#define EXPECTED_PRISM_VERSION "1.5.0"
4+
#define EXPECTED_PRISM_VERSION "1.5.1"
55

66
#include <ruby.h>
77
#include <ruby/encoding.h>

prism/templates/lib/prism/serialize.rb.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module Prism
1414

1515
# The patch version of prism that we are expecting to find in the serialized
1616
# strings.
17-
PATCH_VERSION = 0
17+
PATCH_VERSION = 1
1818

1919
# Deserialize the dumped output from a request to parse or parse_file.
2020
#

prism/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
/**
2020
* The patch version of the Prism library as an int.
2121
*/
22-
#define PRISM_VERSION_PATCH 0
22+
#define PRISM_VERSION_PATCH 1
2323

2424
/**
2525
* The version of the Prism library as a constant string.
2626
*/
27-
#define PRISM_VERSION "1.5.0"
27+
#define PRISM_VERSION "1.5.1"
2828

2929
#endif

0 commit comments

Comments
 (0)