Skip to content

Commit f486b39

Browse files
kddnewtonmatzbot
authored andcommitted
[ruby/prism] Bump to v
ruby/prism@7574837b7b
1 parent abad1f4 commit f486b39

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.1"
5+
spec.version = "1.5.2"
66
spec.authors = ["Shopify"]
77
spec.email = ["ruby@shopify.com"]
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.1"
4+
#define EXPECTED_PRISM_VERSION "1.5.2"
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 = 1
17+
PATCH_VERSION = 2
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 1
22+
#define PRISM_VERSION_PATCH 2
2323

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

2929
#endif

0 commit comments

Comments
 (0)