File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Gem ::Specification . new do |spec |
4
4
spec . name = "prism"
5
- spec . version = "1.5.0 "
5
+ spec . version = "1.5.1 "
6
6
spec . authors = [ "Shopify" ]
7
7
spec . email = [ "[email protected] " ]
8
8
Original file line number Diff line number Diff line change 1
1
#ifndef PRISM_EXT_NODE_H
2
2
#define PRISM_EXT_NODE_H
3
3
4
- #define EXPECTED_PRISM_VERSION "1.5.0 "
4
+ #define EXPECTED_PRISM_VERSION "1.5.1 "
5
5
6
6
#include <ruby.h>
7
7
#include <ruby/encoding.h>
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ module Prism
14
14
15
15
# The patch version of prism that we are expecting to find in the serialized
16
16
# strings.
17
- PATCH_VERSION = 0
17
+ PATCH_VERSION = 1
18
18
19
19
# Deserialize the dumped output from a request to parse or parse_file.
20
20
#
Original file line number Diff line number Diff line change 19
19
/**
20
20
* The patch version of the Prism library as an int.
21
21
*/
22
- #define PRISM_VERSION_PATCH 0
22
+ #define PRISM_VERSION_PATCH 1
23
23
24
24
/**
25
25
* The version of the Prism library as a constant string.
26
26
*/
27
- #define PRISM_VERSION "1.5.0 "
27
+ #define PRISM_VERSION "1.5.1 "
28
28
29
29
#endif
You can’t perform that action at this time.
0 commit comments