This is an automated email from the ASF dual-hosted git repository.
pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new 94004ef08 chore: release minor changes
94004ef08 is described below
commit 94004ef0809536fe634d8391222662c9d1d5cdfc
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Mon Jun 10 16:15:47 2024 +0200
chore: release minor changes
---
release.adoc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/release.adoc b/release.adoc
index 4d0609e6a..a6c3a048a 100644
--- a/release.adoc
+++ b/release.adoc
@@ -279,7 +279,7 @@ Once the release process is complete, we must prepare the
configuration for next
```
git pull
make bump VERSION=<new-version>-SNAPSHOT
LAST_RELEASED_VERSION=<replace-version>
-git commit -a -m "chore: bump next version to <new-version>-SNAPSHOT"
+git commit -a -m "chore(release): bump next version to <new-version>-SNAPSHOT"
git push origin HEAD:release-a.b.x
```
Where <new-version> represents the new version you want to bump and
<replace-version> the version that was previously released.
@@ -290,7 +290,7 @@ If you're releasing a minor or a major version, then, you
need also to bump the
git checkout main
git pull
make bump VERSION=<new-version>-SNAPSHOT
LAST_RELEASED_VERSION=<replace-version>
-git commit -a -m "chore: bump next version to <new-version>-SNAPSHOT"
+git commit -a -m "chore(release): bump next version to <new-version>-SNAPSHOT"
git push origin HEAD:main
```
Now, the release process is completed. Thanks for taking care. Make sure to
remove the local repository on your machine to avoid any further update on the
project by mistake.