-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Robert Waffen <[email protected]>
- Loading branch information
Showing
7 changed files
with
136 additions
and
122 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,40 @@ | ||
--- | ||
|
||
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes | ||
|
||
changelog: | ||
exclude: | ||
labels: | ||
- ignore-for-release | ||
- duplicate | ||
- invalid | ||
- modulesync | ||
- question | ||
- skip-changelog | ||
- wont-fix | ||
- wontfix | ||
- github_actions | ||
|
||
categories: | ||
- title: Breaking Changes 🛠 | ||
labels: | ||
- breaking-change | ||
- backwards-incompatible | ||
|
||
- title: New Features 🎉 | ||
labels: | ||
- enhancement | ||
|
||
- title: Bug Fixes 🐛 | ||
labels: | ||
- bug | ||
|
||
- title: Documentation Updates 📚 | ||
labels: | ||
- documentation | ||
- docs | ||
|
||
- title: Dependency Updates ⬆️ | ||
labels: | ||
- dependencies | ||
|
||
- title: Other Changes | ||
labels: | ||
- "*" |
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
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -539,7 +539,7 @@ DEPENDENCIES | |
web-console (>= 3.3.0) | ||
|
||
RUBY VERSION | ||
ruby 3.3.4p94 | ||
ruby 3.3.5p100 | ||
|
||
BUNDLED WITH | ||
2.5.3 |
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,34 @@ | ||
# Release | ||
|
||
## On a fork | ||
|
||
Please follow these instructions carefully. | ||
Ensure that you name the branch precisely as `release-vX.Y.Z` | ||
since this nomenclature is crucial for obtaining the `future_version` in the changelog. | ||
Your attention to this specific branch naming convention is essential for accurate version tracking in the changelog. | ||
|
||
```shell | ||
export RELEASE_VERSION="X.Y.Z" | ||
git switch main | ||
git pull --rebase | ||
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 ---signoff -all --message "Release v${RELEASE_VERSION}" | ||
git push --set-upstream origin HEAD | ||
``` | ||
|
||
Then open a PR, discuss and merge. | ||
|
||
## After the merge, as a maintainer on upstream | ||
|
||
```shell | ||
git switch main | ||
git pull --rebase | ||
git tag v$RELEASE_VERSION -m "v$RELEASE_VERSION" | ||
git push --tags | ||
``` |
This file was deleted.
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