Skip to content

Commit afdfff9

Browse files
committed
[PRISM] Bump to version 0.29.0
1 parent 2e4f373 commit afdfff9

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.28.0"
5+
spec.version = "0.29.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.28.0"
4+
#define EXPECTED_PRISM_VERSION "0.29.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
@@ -10,7 +10,7 @@ module Prism
1010

1111
# The minor version of prism that we are expecting to find in the serialized
1212
# strings.
13-
MINOR_VERSION = 28
13+
MINOR_VERSION = 29
1414

1515
# The patch version of prism that we are expecting to find in the serialized
1616
# 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 28
17+
#define PRISM_VERSION_MINOR 29
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.28.0"
27+
#define PRISM_VERSION "0.29.0"
2828

2929
#endif

0 commit comments

Comments
 (0)