-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1749 from ruby/bump-version
Increment version to 0.16.0
- Loading branch information
Showing
16 changed files
with
68 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
prism (0.15.1) | ||
prism (0.16.0) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Releasing | ||
|
||
To release a new version of Prism, perform the following steps: | ||
|
||
## Preparation | ||
|
||
* Update the CHANGELOG.md file. | ||
* Add a new section for the new version at the top of the file. | ||
* Fill in the relevant changes — it may be easiest to click the link for the `Unreleased` heading to find the commits. | ||
* Update the links at the bottom of the file. | ||
* Update the version in the following files: | ||
* `prism.gemspec` in the `Gem::Specification#version=` method call | ||
* `ext/prism/extension.h` in the `EXPECTED_PRISM_VERSION` macro | ||
* `include/prism/version.h` in the version macros | ||
* `javascript/package.json` in the `version` field | ||
* `rust/prism-sys/tests/utils_tests.rs` in the `version_test` function | ||
* `templates/java/org/prism/Loader.java.erb` in the `load` function | ||
* `templates/javascript/src/deserialize.js.erb` in the version constants | ||
* `templates/lib/prism/serialize.rb.erb` in the version constants | ||
* Run `bundle install` to update the `Gemfile.lock` file. | ||
* Update `rust/prism-sys/Cargo.toml` to match the new version and run `cargo build` | ||
* Update `rust/prism/Cargo.toml` to match the new version and run `cargo build` | ||
* Commit all of the updated files. | ||
|
||
## Publishing | ||
|
||
* Run `bundle exec rake release` to publish the gem to [rubygems.org](rubygems.org). Note that you must have access to the `prism` gem to do this. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#define PRISM_VERSION_MAJOR 0 | ||
#define PRISM_VERSION_MINOR 15 | ||
#define PRISM_VERSION_PATCH 1 | ||
#define PRISM_VERSION "0.15.1" | ||
#define PRISM_VERSION_MINOR 16 | ||
#define PRISM_VERSION_PATCH 0 | ||
#define PRISM_VERSION "0.16.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
Gem::Specification.new do |spec| | ||
spec.name = "prism" | ||
spec.version = "0.15.1" | ||
spec.version = "0.16.0" | ||
spec.authors = ["Shopify"] | ||
spec.email = ["[email protected]"] | ||
|
||
|
@@ -31,6 +31,7 @@ Gem::Specification.new do |spec| | |
"docs/javascript.md", | ||
"docs/mapping.md", | ||
"docs/prism.png", | ||
"docs/releasing.md", | ||
"docs/ripper.md", | ||
"docs/ruby_api.md", | ||
"docs/serialization.md", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters