Fix numbering in RELEASE.md

This commit is contained in:
Peter Wagenet 2017-04-24 10:09:48 -07:00
parent a910795d46
commit f7b55fa133
1 changed files with 10 additions and 10 deletions

View File

@ -1,21 +1,21 @@
# Helix Release Process
0. Verify that CI is passing
0. Update all version number references. (There are a lot, do a search.)
0. Update CHANGELOG.md
0. Run `./scripts/test-release` to make sure packages are ready for release.
0. Commit and push version bump and changelog.
0. Tag version in Git, prefixed with 'v' and push with `git push --tags`
1. Verify that CI is passing
1. Update all version number references. (There are a lot, do a search.)
1. Update CHANGELOG.md
1. Run `./scripts/test-release` to make sure packages are ready for release.
1. Commit and push version bump and changelog.
1. Tag version in Git, prefixed with 'v' and push with `git push --tags`
### In `./ruby`
0. `gem build helix-runtime.gemspec`
0. `gem push helix-runtime-VERSION.gem`
1. `gem build helix-runtime.gemspec`
1. `gem push helix-runtime-VERSION.gem`
### In `./crates/libcruby-sys`
0. `HELIX_LIB_DIR=$PWD cargo publish`
1. `HELIX_LIB_DIR=$PWD cargo publish`
### In `.`
0. `cargo publish`
1. `cargo publish`