-
Notifications
You must be signed in to change notification settings - Fork 0
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 #56 from betadots/readme_release_notes
Update readme/release notes
- Loading branch information
Showing
2 changed files
with
14 additions
and
7 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,35 +1,38 @@ | ||
# How to make a release | ||
|
||
Initiate a Release Pull Request (PR). Ensure that the release branch includes the version in its name, as this will be utilized as the 'future_version' for the GitHub changelog generator. | ||
## On a fork | ||
|
||
Initiate a Release Pull Request (PR). Ensure that the release branch includes the version in its name, as this will be utilized as the `future_version` for the GitHub changelog generator. | ||
|
||
See Rakefile | ||
|
||
```ruby | ||
config.future_release = `git rev-parse --abbrev-ref HEAD`.strip.split('-', 2).last | ||
``` | ||
|
||
Create a Release PR: | ||
Do the following: | ||
|
||
```shell | ||
export RELEASE_VERSION="X.Y.Z" | ||
git switch main | ||
git pull -r | ||
git switch -c release-vX.Y.Z | ||
git switch -c release-v$RELEASE_VERSION | ||
|
||
bundle config set --local path vendor/bundle | ||
bundle config set --local with 'release' | ||
bundle install | ||
|
||
CHANGELOG_GITHUB_TOKEN="token_MC_tokenface" bundle exec rake changelog | ||
|
||
git commit -am 'Release vX.Y.Z' | ||
git push origin release-vX.Y.Z | ||
git commit -am "Release v${RELEASE_VERSION}" | ||
git push origin release-v$RELEASE_VERSION | ||
``` | ||
|
||
After the merge do: | ||
## After the merge, as a maintainer on upstream | ||
|
||
```shell | ||
git switch main | ||
git pull -r | ||
git tag vX.Y.Z | ||
git tag v$RELEASE_VERSION -m "v$RELEASE_VERSION" | ||
git push --tags | ||
``` |