This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push:
new 3f3d307 Add release guide notes for updating k8s version labels in
example projects
3f3d307 is described below
commit 3f3d307b96e86fa48a27626eed115c44b635d6a5
Author: James Netherton <[email protected]>
AuthorDate: Wed Feb 2 14:52:03 2022 +0000
Add release guide notes for updating k8s version labels in example projects
---
docs/modules/ROOT/pages/contributor-guide/release-guide.adoc | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/docs/modules/ROOT/pages/contributor-guide/release-guide.adoc
b/docs/modules/ROOT/pages/contributor-guide/release-guide.adoc
index f2ec4db..430ee28 100644
--- a/docs/modules/ROOT/pages/contributor-guide/release-guide.adoc
+++ b/docs/modules/ROOT/pages/contributor-guide/release-guide.adoc
@@ -274,6 +274,8 @@ $ git checkout main
$ git fetch upstream
$ git reset --hard upstream/main
$ ./mvnw-for-each.sh versions:set -DnewVersion=$NEW_CQ_VERSION
+# Update version labels in Kubernetes resources
+$ ./mvnw process-sources -f file-bindy-ftp/pom.xml
$ git add -A
$ git commit -m "Tag $NEW_CQ_VERSION"
$ git tag $NEW_CQ_VERSION
@@ -292,7 +294,9 @@ $ git push upstream $BRANCH
$ NEXT_CQ_VERSION=... # The version used in the current Camel Quarkus main
branch without the -SNAPSHOT suffix; e.g. 2.3.0
$ git checkout camel-quarkus-main
$ git reset --hard main
-$ mvn org.l2x6.cq:cq-maven-plugin:2.10.0:examples-set-platform
-Dcq.camel-quarkus.version=${NEXT_CQ_VERSION}-SNAPSHOT
-Dcq.newVersion=${NEXT_CQ_VERSION}-SNAPSHOT
+$ ./mvnw org.l2x6.cq:cq-maven-plugin:2.10.0:examples-set-platform
-Dcq.camel-quarkus.version=${NEXT_CQ_VERSION}-SNAPSHOT
-Dcq.newVersion=${NEXT_CQ_VERSION}-SNAPSHOT
+# Update version labels in Kubernetes resources
+$ ./mvnw process-sources -f file-bindy-ftp/pom.xml
$ git add -A
$ git commit -m "Next is $NEXT_CQ_VERSION"
$ git push upstream camel-quarkus-main --force-with-lease