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

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

commit e929db111d6d8ac000f9262342cb3d2eed157aad
Author: nicolaferraro <ni.ferr...@gmail.com>
AuthorDate: Fri Sep 3 17:12:45 2021 +0200

    Release 1.6.0
---
 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 414123c..11b4965 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.6.0-SNAPSHOT
+          image: docker.io/apache/camel-k:1.6.0
           imagePullPolicy: IfNotPresent
           command:
             - kamel
diff --git a/config/manifests/bases/camel-k.clusterserviceversion.yaml 
b/config/manifests/bases/camel-k.clusterserviceversion.yaml
index 7bba062..fcdfa87 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.6.0-SNAPSHOT
+    containerImage: docker.io/apache/camel-k:1.6.0
     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 d221227..d6bcb24 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 v0.0.0
-       github.com/apache/camel-k/pkg/client/camel v0.0.0
-       github.com/apache/camel-k/pkg/kamelet/repository v0.0.0
+       github.com/apache/camel-k/pkg/apis/camel v1.6.0
+       github.com/apache/camel-k/pkg/client/camel v1.6.0
+       github.com/apache/camel-k/pkg/kamelet/repository v1.6.0
        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 0386fa3..22492ae 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.6.0-SNAPSHOT
+appVersion: 1.6.0
 
 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 2ad2c6d..7bbf80e 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.6.0-SNAPSHOT
+  image: docker.io/apache/camel-k:1.6.0
 
 platform:
   build:
diff --git a/pkg/client/camel/go.mod b/pkg/client/camel/go.mod
index 32f8a7d..3517be2 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 v0.0.0
+       github.com/apache/camel-k/pkg/apis/camel v1.6.0
        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 9137065..78a8e52 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 v0.0.0
-       github.com/apache/camel-k/pkg/client/camel v0.0.0
+       github.com/apache/camel-k/pkg/apis/camel v1.6.0
+       github.com/apache/camel-k/pkg/client/camel v1.6.0
        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 929da2b..bbd2960 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\xc1\x6e\xe3\x36\x10\xbd\xeb\x2b\x1e\xac\xcb\x2e\x10\xdb\xc9\x1e\x8a\x85\x7a\x52\x13\xa7\x31\x9a\xda\x86\xe5\x6d\xb0\xa7\x82\xa6\xc6\x12\x11\x8a\xa3\x92\x94\xbd\xea\xd7\x17\x94\x2d\xc7\xf6\xa6\x69\x0f\x01\x96\x27\x4b\x33\xf3\xe6\xbd\x99\x27\x3a\xc6\xf0\xfd\x4e\x14\xe3\x51\x49\x32\x8e\x72\x78\x86\x2f\x09\x69\x2d\x64\x49\xc8\x78\xe3\x77\xc2\x12\xee\xb9\x31\xb9\xf0\x8a\x0d\x3e\xa4\xd9\xfd\x47\x34\x26\x27\x0b\x36\x
 [...]
+                       compressedContent: 
[]byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x55\x41\x73\xe2\x46\x13\xbd\xeb\x57\xbc\x42\x97\xdd\x2a\x1b\xec\x3d\x7c\xb5\xa5\xef\xa4\xd8\x38\x4b\xc5\x01\x0a\xb1\x71\xed\x29\x35\x8c\x1a\xd4\xe5\xd1\xb4\x32\x33\xc0\x92\x5f\x9f\x1a\x81\x30\xb0\x8e\x93\x83\xab\x32\x27\xa4\xee\x7e\xfd\x5e\xf7\xd3\x90\xe2\xfa\xfd\x4e\x92\xe2\x91\x35\x59\x4f\x25\x82\x20\x54\x84\xbc\x51\xba\x22\x14\xb2\x0c\x5b\xe5\x08\x0f\xb2\xb6\xa5\x0a\x2c\x16\x1f\xf2\xe2\xe1\x23\xd6\xb6\x24\x07\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 6ad9f37..1427d11 100644
--- a/pkg/util/defaults/defaults.go
+++ b/pkg/util/defaults/defaults.go
@@ -23,7 +23,7 @@ package defaults
 
 const (
        // Version --
-       Version = "1.6.0-SNAPSHOT"
+       Version = "1.6.0"
 
        // DefaultRuntimeVersion --
        DefaultRuntimeVersion = "1.9.0"
diff --git a/script/Makefile b/script/Makefile
index 1c0d38f..ba77caf 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 VERSIONFILE := pkg/util/defaults/defaults.go
-VERSION ?= 1.6.0-SNAPSHOT
+VERSION ?= 1.6.0
 OPERATOR_VERSION := $(subst -SNAPSHOT,,$(VERSION))
 LAST_RELEASED_VERSION := 1.5.1
 RUNTIME_VERSION := 1.9.0

Reply via email to