From 7b4c0fbee2d1f2217cf2731f04f2ae007b3681ce Mon Sep 17 00:00:00 2001 From: Pasquale Congiusti Date: Tue, 6 Sep 2022 11:41:12 +0200 Subject: [PATCH] chore: add a post release bump chapter --- release.adoc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/release.adoc b/release.adoc index 1a7de581d5..f021a48119 100644 --- a/release.adoc +++ b/release.adoc @@ -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= LAST_RELEASED_VERSION= +git commit -m "chore: bump next version to " +git push upstream main +``` +Where represents the new version you want to bump and 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.