You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2021/08/27 15:14:23 UTC

[camel-k] 01/01: Release 1.5.1

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

nferraro pushed a commit to tag v1.5.1
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 02dd9e62f7e3f29de2db99ad51304c9ae5db9846
Author: nicolaferraro <ni...@gmail.com>
AuthorDate: Fri Aug 27 17:14:17 2021 +0200

    Release 1.5.1
---
 config/manager/operator-deployment.yaml                   | 2 +-
 config/manifests/bases/camel-k.clusterserviceversion.yaml | 2 +-
 go.mod                                                    | 6 +++---
 helm/camel-k/Chart.yaml                                   | 2 +-
 helm/camel-k/values.yaml                                  | 2 +-
 pkg/client/camel/go.mod                                   | 2 +-
 pkg/kamelet/repository/go.mod                             | 4 ++--
 pkg/resources/resources.go                                | 4 ++--
 pkg/util/defaults/defaults.go                             | 2 +-
 script/Makefile                                           | 2 +-
 10 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/config/manager/operator-deployment.yaml b/config/manager/operator-deployment.yaml
index ed49b93..1ddf2ef 100644
--- a/config/manager/operator-deployment.yaml
+++ b/config/manager/operator-deployment.yaml
@@ -39,7 +39,7 @@ spec:
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:1.5.1-SNAPSHOT
+          image: docker.io/apache/camel-k:1.5.1
           imagePullPolicy: IfNotPresent
           command:
             - kamel
diff --git a/config/manifests/bases/camel-k.clusterserviceversion.yaml b/config/manifests/bases/camel-k.clusterserviceversion.yaml
index 7dc7657..e581e75 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:1.5.1-SNAPSHOT
+    containerImage: docker.io/apache/camel-k:1.5.1
     createdAt: 2021-05-03T07:48:00Z
     description: Apache Camel K is a lightweight integration platform, born on Kubernetes, with serverless superpowers.
     operators.operatorframework.io/builder: operator-sdk-v1.3.0
diff --git a/go.mod b/go.mod
index 5101085..1f13899 100644
--- a/go.mod
+++ b/go.mod
@@ -5,9 +5,9 @@ go 1.15
 require (
 	github.com/Masterminds/semver v1.5.0
 	github.com/Microsoft/hcsshim v0.8.15 // indirect
-	github.com/apache/camel-k/pkg/apis/camel v1.5.0
-	github.com/apache/camel-k/pkg/client/camel v1.5.0
-	github.com/apache/camel-k/pkg/kamelet/repository v1.5.0
+	github.com/apache/camel-k/pkg/apis/camel v1.5.1
+	github.com/apache/camel-k/pkg/client/camel v1.5.1
+	github.com/apache/camel-k/pkg/kamelet/repository v1.5.1
 	github.com/container-tools/spectrum v0.3.4
 	github.com/containerd/continuity v0.0.0-20210208174643-50096c924a4e // indirect
 	github.com/evanphx/json-patch v4.9.0+incompatible
diff --git a/helm/camel-k/Chart.yaml b/helm/camel-k/Chart.yaml
index bc2dfb2..ad7e11a 100644
--- a/helm/camel-k/Chart.yaml
+++ b/helm/camel-k/Chart.yaml
@@ -35,7 +35,7 @@ version: 0.7.0
 
 # 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: 1.5.1-SNAPSHOT
+appVersion: 1.5.1
 
 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 5a2cb6a..de0191e 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:1.5.1-SNAPSHOT
+  image: docker.io/apache/camel-k:1.5.1
 
 platform:
   build:
diff --git a/pkg/client/camel/go.mod b/pkg/client/camel/go.mod
index 0d0e7e4..3672abd 100644
--- a/pkg/client/camel/go.mod
+++ b/pkg/client/camel/go.mod
@@ -3,7 +3,7 @@ module github.com/apache/camel-k/pkg/client/camel
 go 1.15
 
 require (
-	github.com/apache/camel-k/pkg/apis/camel v1.5.0
+	github.com/apache/camel-k/pkg/apis/camel v1.5.1
 	k8s.io/api v0.20.2
 	k8s.io/apimachinery v0.20.2
 	k8s.io/client-go v0.20.2
diff --git a/pkg/kamelet/repository/go.mod b/pkg/kamelet/repository/go.mod
index f3dfd7c..8cc18de 100644
--- a/pkg/kamelet/repository/go.mod
+++ b/pkg/kamelet/repository/go.mod
@@ -3,8 +3,8 @@ module github.com/apache/camel-k/pkg/kamelet/repository
 go 1.15
 
 require (
-	github.com/apache/camel-k/pkg/apis/camel v1.5.0
-	github.com/apache/camel-k/pkg/client/camel v1.5.0
+	github.com/apache/camel-k/pkg/apis/camel v1.5.1
+	github.com/apache/camel-k/pkg/client/camel v1.5.1
 	github.com/google/go-github/v32 v32.1.0
 	github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7
 	github.com/stretchr/testify v1.6.1
diff --git a/pkg/resources/resources.go b/pkg/resources/resources.go
index 7e8099f..496f826 100644
--- a/pkg/resources/resources.go
+++ b/pkg/resources/resources.go
@@ -142,9 +142,9 @@ var assets = func() http.FileSystem {
 		"/manager/operator-deployment.yaml": &vfsgen۰CompressedFileInfo{
 			name:             "operator-deployment.yaml",
 			modTime:          time.Time{},
-			uncompressedSize: 2397,
+			uncompressedSize: 2388,
 
-			compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x55\x41\x8f\xe2\x46\x13\xbd\xfb\x57\x3c\xe1\xcb\xae\x34\xc0\xb0\xd2\x27\xad\xfc\x9d\x9c\x19\x26\x8b\x32\x01\x84\xd9\x8c\xf6\x14\x35\xed\xc2\x6e\x4d\xbb\xcb\xe9\x6e\xc3\x3a\xbf\x3e\x6a\x83\x19\x60\x27\x93\x1c\x46\x4a\x9f\xb0\xab\xea\xd5\x7b\x55\xcf\x4d\x8c\xe1\xfb\x9d\x28\xc6\xa3\x92\x64\x1c\xe5\xf0\x0c\x5f\x12\xd2\x5a\xc8\x92\x90\xf1\xd6\xef\x85\x25\x3c\x70\x63\x72\xe1\x15\x1b\x7c\x48\xb3\x87\x8f\x68\x4c\x4e\x16\x [...]
+			compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x55\x41\x8f\xe2\x46\x13\xbd\xfb\x57\x3c\xe1\xcb\xae\x34\x03\xc3\x4a\x9f\xb4\xf2\x77\x72\x66\x98\x2c\xca\x04\x10\x66\x33\xda\x53\xd4\xb4\x0b\xbb\x45\xbb\xcb\xe9\x6e\xc3\x3a\xbf\x3e\x6a\x83\x19\x60\x27\x93\x1c\x46\x4a\x9f\xb0\xab\xea\xd5\x7b\x55\xcf\x4d\x8c\xdb\xf7\x3b\x51\x8c\x27\x25\xc9\x38\xca\xe1\x19\xbe\x24\xa4\xb5\x90\x25\x21\xe3\x8d\xdf\x0b\x4b\x78\xe4\xc6\xe4\xc2\x2b\x36\xf8\x90\x66\x8f\x1f\xd1\x98\x9c\x2c\x [...]
 		},
 		"/manager/operator-service-account.yaml": &vfsgen۰CompressedFileInfo{
 			name:             "operator-service-account.yaml",
diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go
index 708c36d..47c6b84 100644
--- a/pkg/util/defaults/defaults.go
+++ b/pkg/util/defaults/defaults.go
@@ -23,7 +23,7 @@ package defaults
 
 const (
 	// Version --
-	Version = "1.5.1-SNAPSHOT"
+	Version = "1.5.1"
 
 	// DefaultRuntimeVersion --
 	DefaultRuntimeVersion = "1.8.0"
diff --git a/script/Makefile b/script/Makefile
index 75c1daf..28daa3b 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 VERSIONFILE := pkg/util/defaults/defaults.go
-VERSION := 1.5.1-SNAPSHOT
+VERSION := 1.5.1
 OPERATOR_VERSION := $(subst -SNAPSHOT,,$(VERSION))
 LAST_RELEASED_VERSION := 1.5.0
 RUNTIME_VERSION := 1.8.0