Skip to content

Commit

Permalink
Release 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaferraro committed Nov 23, 2020
1 parent ecf6019 commit 476ed0e
Show file tree
Hide file tree
Showing 17 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,14 +157,14 @@ metadata:
capabilities: Full Lifecycle
categories: Integration & Delivery
certified: "false"
containerImage: docker.io/apache/camel-k:1.2.1-SNAPSHOT
containerImage: docker.io/apache/camel-k:1.2.1
createdAt: "2020-06-09T02:45:00Z"
description: Apache Camel K is a lightweight integration platform, born on Kubernetes,
with serverless superpowers.
repository: https://github.com/apache/camel-k
operators.operatorframework.io/internal-objects: '["builds.camel.apache.org","integrationkits.camel.apache.org","camelcatalogs.camel.apache.org"]'
support: Camel
name: camel-k-operator.v1.2.1-snapshot
name: camel-k-operator.v1.2.1
namespace: placeholder
spec:
relatedImages:
Expand Down Expand Up @@ -312,7 +312,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: docker.io/apache/camel-k:1.2.1-SNAPSHOT
image: docker.io/apache/camel-k:1.2.1
imagePullPolicy: IfNotPresent
name: camel-k-operator
resources: {}
Expand Down Expand Up @@ -564,4 +564,4 @@ spec:
selector:
matchLabels:
name: camel-k-operator
version: 1.2.1-snapshot
version: 1.2.1
2 changes: 1 addition & 1 deletion deploy/olm-catalog/camel-k-dev/camel-k-dev.package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# ---------------------------------------------------------------------------

channels:
- currentCSV: camel-k-operator.v1.2.1-snapshot
- currentCSV: camel-k-operator.v1.2.1
name: stable
defaultChannel: stable
packageName: camel-k-dev
2 changes: 1 addition & 1 deletion deploy/operator-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec:
serviceAccountName: camel-k-operator
containers:
- name: camel-k-operator
image: docker.io/apache/camel-k:1.2.1-SNAPSHOT
image: docker.io/apache/camel-k:1.2.1
command:
- kamel
- operator
Expand Down
4 changes: 2 additions & 2 deletions deploy/resources.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ go 1.13

require (
github.com/Masterminds/semver v1.5.0
github.com/apache/camel-k/pkg/apis/camel v1.2.0
github.com/apache/camel-k/pkg/client/camel v1.2.0
github.com/apache/camel-k/pkg/apis/camel v1.2.1
github.com/apache/camel-k/pkg/client/camel v1.2.1
github.com/container-tools/spectrum v0.3.2
github.com/evanphx/json-patch v4.9.0+incompatible
github.com/fatih/structs v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion helm/camel-k/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ version: 0.4.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: 1.2.1-SNAPSHOT
appVersion: 1.2.1

icon: https://github.com/apache/camel/raw/master/docs/img/logo64-d.png
home: https://camel.apache.org/camel-k/latest/
Expand Down
2 changes: 1 addition & 1 deletion helm/camel-k/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ nameOverride: ""
fullnameOverride: ""

operator:
image: docker.io/apache/camel-k:1.2.1-SNAPSHOT
image: docker.io/apache/camel-k:1.2.1

platform:
build:
Expand Down
2 changes: 1 addition & 1 deletion pkg/client/camel/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/apache/camel-k/pkg/client/camel
go 1.13

require (
github.com/apache/camel-k/pkg/apis/camel v1.2.0
github.com/apache/camel-k/pkg/apis/camel v1.2.1
k8s.io/apimachinery v0.18.9
k8s.io/client-go v0.18.9
k8s.io/code-generator v0.18.9 // indirect
Expand Down
2 changes: 1 addition & 1 deletion pkg/util/defaults/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ package defaults

const (
// Version --
Version = "1.2.1-SNAPSHOT"
Version = "1.2.1"

// DefaultRuntimeVersion --
DefaultRuntimeVersion = "1.5.0"
Expand Down
2 changes: 1 addition & 1 deletion script/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.

VERSIONFILE := pkg/util/defaults/defaults.go
VERSION := 1.2.1-SNAPSHOT
VERSION := 1.2.1
LAST_RELEASED_VERSION := 1.2.0
RUNTIME_VERSION := 1.5.0
BUILDAH_VERSION := 1.14.0
Expand Down

0 comments on commit 476ed0e

Please sign in to comment.