Skip to content

Commit

Permalink
Release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaferraro committed Sep 11, 2020
1 parent 75cdfa0 commit b7b785d
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
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.1.1-SNAPSHOT
image: docker.io/apache/camel-k:1.1.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.1.0
github.com/apache/camel-k/pkg/client/camel v1.1.0
github.com/apache/camel-k/pkg/apis/camel v1.1.1
github.com/apache/camel-k/pkg/client/camel v1.1.1
github.com/container-tools/spectrum v0.3.2
github.com/coreos/prometheus-operator v0.38.1-0.20200424145508-7e176fda06cc
github.com/evanphx/json-patch v4.5.0+incompatible
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.3.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.1.1-SNAPSHOT
appVersion: 1.1.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.1.1-SNAPSHOT
image: docker.io/apache/camel-k:1.1.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.1.0
github.com/apache/camel-k/pkg/apis/camel v1.1.1
k8s.io/apimachinery v0.18.2
k8s.io/client-go v0.18.2
)
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.1.1-SNAPSHOT"
Version = "1.1.1"

// DefaultRuntimeVersion --
DefaultRuntimeVersion = "1.4.1"
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.1.1-SNAPSHOT
VERSION := 1.1.1
LAST_RELEASED_VERSION := 1.1.0
RUNTIME_VERSION := 1.4.1
BUILDAH_VERSION := 1.14.0
Expand Down

0 comments on commit b7b785d

Please sign in to comment.