Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add a post release bump chapter #3608

Merged
merged 1 commit into from
Sep 6, 2022
Merged
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
12 changes: 12 additions & 0 deletions release.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -295,3 +295,15 @@ More importantly the _tag_ and _revision_ section configuration should change fo
```

_P.S please note that the bottles are created using the https://docs.brew.sh/Brew-Test-Bot[Brew Test Bot] https://docs.brew.sh/Bottles[ [1] ]._

=== Bump to next version

Once the release process is complete, we must prepare the configuration for next version. In order to do so, please run the following:
```
make bump VERSION=<new-version> LAST_RELEASED_VERSION=<replace-version>
git commit -m "chore: bump next version to <new-version>"
git push upstream main
```
Where <new-version> represents the new version you want to bump and <replace-version> the version that was previously released.

In case of a major or minor release, please update accordingly the `release` workflow in order to always have the latest 2 release branches and `main` running in a CI fashion. See https://github.com/apache/camel-k/pull/3607/commits/f835c978dcfbcadae99b0f8b2fbcd07f49adb3a1 for reference.