8000 Bump prism to version 0.19.0 · ruby/ruby@8bbe835 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8bbe835

Browse files
committed
Bump prism to version 0.19.0
1 parent d07fdc5 commit 8bbe835

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 = "0.18.0"
5+
spec.version = "0.19.0"
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 "0.18.0"
4+
#define EXPECTED_PRISM_VERSION "0.19.0"
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
@@ -20,7 +20,7 @@ module Prism
2020

2121
# The minor version of prism that we are expecting to find in the serialized
2222
# strings.
23-
MINOR_VERSION = 18
23+
MINOR_VERSION = 19
2424

2525
# The patch version of prism that we are expecting to find in the serialized
2626
# strings.

prism/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* The minor version of the Prism library as an int.
1616
*/
17-
#define PRISM_VERSION_MINOR 18
17+
#define PRISM_VERSION_MINOR 19
1818

1919
/**
2020
* The patch version of the Prism library as an int.
@@ -24,6 +24,6 @@
2424
/**
2525
* The version of the Prism library as a constant string.
2626
*/
27-
#define PRISM_VERSION "0.18.0"
27+
#define PRISM_VERSION "0.19.0"
2828

2929
#endif

0 commit comments

Comments
 (0)
0