Skip to content

Commit

Permalink
Release 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
oscerd committed Feb 21, 2022
1 parent d521b01 commit 29a5d89
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion config/manager/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.8.1-SNAPSHOT
image: docker.io/apache/camel-k:1.8.1
imagePullPolicy: IfNotPresent
command:
- kamel
Expand Down
2 changes: 1 addition & 1 deletion config/manifests/bases/camel-k.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ metadata:
capabilities: Full Lifecycle
categories: Integration & Delivery
certified: "false"
containerImage: docker.io/apache/camel-k:1.8.1-SNAPSHOT
containerImage: docker.io/apache/camel-k:1.8.1
createdAt: 2021-12-20T16:11:27Z
description: Apache Camel K is a lightweight integration platform, born on Kubernetes,
with serverless superpowers.
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ go 1.16

require (
github.com/Masterminds/semver v1.5.0
github.com/apache/camel-k/pkg/apis/camel v1.8.0
github.com/apache/camel-k/pkg/client/camel v1.8.0
github.com/apache/camel-k/pkg/kamelet/repository v1.8.0
github.com/apache/camel-k/pkg/apis/camel v1.8.1
github.com/apache/camel-k/pkg/client/camel v1.8.1
github.com/apache/camel-k/pkg/kamelet/repository v1.8.1
github.com/container-tools/spectrum v0.3.7
github.com/evanphx/json-patch v4.11.0+incompatible
github.com/fatih/camelcase v1.0.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.9.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.8.1-SNAPSHOT
appVersion: 1.8.1

icon: https://github.com/apache/camel/raw/main/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.8.1-SNAPSHOT
image: docker.io/apache/camel-k:1.8.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.15

require (
github.com/apache/camel-k/pkg/apis/camel v1.8.0
github.com/apache/camel-k/pkg/apis/camel v1.8.1
k8s.io/api v0.20.2
k8s.io/apimachinery v0.20.2
k8s.io/client-go v0.20.2
Expand Down
4 changes: 2 additions & 2 deletions pkg/kamelet/repository/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.0
github.com/apache/camel-k/pkg/client/camel v1.8.0
github.com/apache/camel-k/pkg/apis/camel v1.8.1
github.com/apache/camel-k/pkg/client/camel v1.8.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
Expand Down
4 changes: 2 additions & 2 deletions pkg/resources/resources.go

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

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.8.1-SNAPSHOT"
Version = "1.8.1"

// DefaultRuntimeVersion --
DefaultRuntimeVersion = "1.12.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.8.1-SNAPSHOT
VERSION ?= 1.8.1
OPERATOR_VERSION := $(subst -SNAPSHOT,,$(VERSION))
LAST_RELEASED_VERSION := 1.8.0
RUNTIME_VERSION := 1.12.0
Expand Down

0 comments on commit 29a5d89

Please sign in to comment.