Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/prism/prism.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |spec|
spec.name = "prism"
spec.version = "1.5.0"
spec.version = "1.5.1"
spec.authors = ["Shopify"]
spec.email = ["[email protected]"]

Expand Down
2 changes: 1 addition & 1 deletion prism/extension.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef PRISM_EXT_NODE_H
#define PRISM_EXT_NODE_H

#define EXPECTED_PRISM_VERSION "1.5.0"
#define EXPECTED_PRISM_VERSION "1.5.1"

#include <ruby.h>
#include <ruby/encoding.h>
Expand Down
2 changes: 1 addition & 1 deletion prism/templates/lib/prism/serialize.rb.erb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module Prism

# The patch version of prism that we are expecting to find in the serialized
# strings.
PATCH_VERSION = 0
PATCH_VERSION = 1

# Deserialize the dumped output from a request to parse or parse_file.
#
Expand Down
4 changes: 2 additions & 2 deletions prism/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
/**
* The patch version of the Prism library as an int.
*/
#define PRISM_VERSION_PATCH 0
#define PRISM_VERSION_PATCH 1

/**
* The version of the Prism library as a constant string.
*/
#define PRISM_VERSION "1.5.0"
#define PRISM_VERSION "1.5.1"

#endif
Loading