You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2023/07/25 07:42:03 UTC

[camel-k] branch release-2.0.x updated: chore: bump next version to 2.0.1-SNAPSHOT

This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch release-2.0.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/release-2.0.x by this push:
     new 7effed3d8 chore: bump next version to 2.0.1-SNAPSHOT
7effed3d8 is described below

commit 7effed3d883703fcca9cdc73bba169aa0eb3f2bb
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Tue Jul 25 09:39:56 2023 +0200

    chore: bump next version to 2.0.1-SNAPSHOT
---
 config/manager/operator-deployment.yaml                   | 6 +++---
 config/manifests/bases/camel-k.clusterserviceversion.yaml | 2 +-
 helm/camel-k/Chart.yaml                                   | 2 +-
 helm/camel-k/values.yaml                                  | 2 +-
 pkg/util/defaults/defaults.go                             | 2 +-
 script/Makefile                                           | 4 ++--
 6 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/config/manager/operator-deployment.yaml b/config/manager/operator-deployment.yaml
index 7083aff2a..7010066db 100644
--- a/config/manager/operator-deployment.yaml
+++ b/config/manager/operator-deployment.yaml
@@ -25,7 +25,7 @@ metadata:
     name: camel-k-operator
     app.kubernetes.io/component: operator
     app.kubernetes.io/name: camel-k
-    app.kubernetes.io/version: "2.0.0"
+    app.kubernetes.io/version: "2.0.1-SNAPSHOT"
 spec:
   replicas: 1
   strategy:
@@ -41,12 +41,12 @@ spec:
         app: "camel-k"
         app.kubernetes.io/component: operator
         app.kubernetes.io/name: camel-k
-        app.kubernetes.io/version: "2.0.0"
+        app.kubernetes.io/version: "2.0.1-SNAPSHOT"
     spec:
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:2.0.0
+          image: docker.io/apache/camel-k:2.0.1-SNAPSHOT
           imagePullPolicy: IfNotPresent
           command:
             - kamel
diff --git a/config/manifests/bases/camel-k.clusterserviceversion.yaml b/config/manifests/bases/camel-k.clusterserviceversion.yaml
index 6e55fc622..4ea04ef78 100644
--- a/config/manifests/bases/camel-k.clusterserviceversion.yaml
+++ b/config/manifests/bases/camel-k.clusterserviceversion.yaml
@@ -22,7 +22,7 @@ metadata:
     capabilities: Full Lifecycle
     categories: Integration & Delivery
     certified: "false"
-    containerImage: docker.io/apache/camel-k:2.0.0
+    containerImage: docker.io/apache/camel-k:2.0.1-SNAPSHOT
     createdAt: 2023-06-12T13:40:21Z
     description: Apache Camel K is a lightweight integration platform, born on Kubernetes,
       with serverless superpowers.
diff --git a/helm/camel-k/Chart.yaml b/helm/camel-k/Chart.yaml
index 519c7959b..c5c241c28 100644
--- a/helm/camel-k/Chart.yaml
+++ b/helm/camel-k/Chart.yaml
@@ -35,7 +35,7 @@ version: 0.13.1
 
 # This is the version number of the application being deployed. This version number should be
 # incremented each time you make changes to the application.
-appVersion: 2.0.0
+appVersion: 2.0.1-SNAPSHOT
 
 icon: https://github.com/apache/camel/raw/main/docs/img/logo64-d.png
 home: https://camel.apache.org/camel-k/latest/
diff --git a/helm/camel-k/values.yaml b/helm/camel-k/values.yaml
index 7e36b1c9f..3b90acf1f 100644
--- a/helm/camel-k/values.yaml
+++ b/helm/camel-k/values.yaml
@@ -23,7 +23,7 @@ nameOverride: ""
 fullnameOverride: ""
 
 operator:
-  image: docker.io/apache/camel-k:2.0.0
+  image: docker.io/apache/camel-k:2.0.1-SNAPSHOT
   global: "false"
   resources: {}
   securityContext: {}
diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go
index 00ebe5a74..696a31f96 100644
--- a/pkg/util/defaults/defaults.go
+++ b/pkg/util/defaults/defaults.go
@@ -23,7 +23,7 @@ package defaults
 
 const (
 	// Version --
-	Version = "2.0.0"
+	Version = "2.0.1-SNAPSHOT"
 
 	// DefaultRuntimeVersion --
 	DefaultRuntimeVersion = "2.16.0"
diff --git a/script/Makefile b/script/Makefile
index 802261b5c..76d1ca08f 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -20,9 +20,9 @@
 SHELL := /bin/bash
 
 VERSIONFILE := pkg/util/defaults/defaults.go
-VERSION ?= 2.0.0
+VERSION ?= 2.0.1-SNAPSHOT
 LAST_RELEASED_IMAGE_NAME := camel-k-operator
-LAST_RELEASED_VERSION ?= 1.12.1
+LAST_RELEASED_VERSION ?= 2.0.0
 DEFAULT_RUNTIME_VERSION := 2.16.0
 BUILDAH_VERSION := 1.30.0
 KANIKO_VERSION := 1.9.1