Skip to content

Commit 2327d59

Browse files
committed
chore(release): bump next version to 2.9.2-SNAPSHOT
1 parent 798b367 commit 2327d59

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

helm/camel-k/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ version: 0.13.1
3535

3636
# This is the version number of the application being deployed. This version number should be
3737
# incremented each time you make changes to the application.
38-
appVersion: 2.9.1
38+
appVersion: 2.9.2-SNAPSHOT
3939

4040
icon: https://github.com/apache/camel/raw/main/docs/img/logo64-d.png
4141
home: https://camel.apache.org/camel-k/latest/

helm/camel-k/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ nameOverride: ""
2323
fullnameOverride: ""
2424

2525
operator:
26-
image: docker.io/apache/camel-k:2.9.1
26+
image: docker.io/apache/camel-k:2.9.2-SNAPSHOT
2727
global: "false"
2828
resources: {}
2929
securityContext: {}

pkg/resources/config/manager/operator-deployment.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ metadata:
2525
name: camel-k-operator
2626
app.kubernetes.io/component: operator
2727
app.kubernetes.io/name: camel-k
28-
app.kubernetes.io/version: "2.9.1-SNAPSHOT"
28+
app.kubernetes.io/version: "2.9.2-SNAPSHOT"
2929
spec:
3030
replicas: 1
3131
strategy:
@@ -41,12 +41,12 @@ spec:
4141
app: "camel-k"
4242
app.kubernetes.io/component: operator
4343
app.kubernetes.io/name: camel-k
44-
app.kubernetes.io/version: "2.9.1-SNAPSHOT"
44+
app.kubernetes.io/version: "2.9.2-SNAPSHOT"
4545
spec:
4646
serviceAccountName: camel-k-operator
4747
containers:
4848
- name: camel-k-operator
49-
image: docker.io/apache/camel-k:2.9.1-SNAPSHOT
49+
image: docker.io/apache/camel-k:2.9.2-SNAPSHOT
5050
imagePullPolicy: IfNotPresent
5151
command:
5252
- kamel

pkg/resources/config/manifests/bases/camel-k.clusterserviceversion.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ metadata:
2222
capabilities: Full Lifecycle
2323
categories: Integration & Delivery
2424
certified: "false"
25-
containerImage: docker.io/apache/camel-k:2.9.1-SNAPSHOT
26-
createdAt: 2025-12-23T11:41:35Z
25+
containerImage: docker.io/apache/camel-k:2.9.2-SNAPSHOT
26+
createdAt: 2026-02-16T14:45:24Z
2727
description: Apache Camel K is a lightweight integration platform, born on Kubernetes,
2828
with serverless superpowers.
2929
operators.operatorframework.io/builder: operator-sdk-v1.16.0
3030
operators.operatorframework.io/internal-objects: '["builds.camel.apache.org","integrationkits.camel.apache.org","camelcatalogs.camel.apache.org"]'
3131
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
3232
repository: https://github.com/apache/camel-k
3333
support: Camel
34-
name: camel-k.v2.9.1
34+
name: camel-k.v2.9.2
3535
spec:
3636
apiservicedefinitions: {}
3737
customresourcedefinitions:
@@ -164,8 +164,8 @@ spec:
164164
minKubeVersion: 1.24.0
165165
provider:
166166
name: The Apache Software Foundation
167-
replaces: camel-k-operator.v2.9.0
167+
replaces: camel-k-operator.v2.9.1
168168
selector:
169169
matchLabels:
170170
name: camel-k-operator
171-
version: 2.9.1
171+
version: 2.9.2

pkg/resources/config/manifests/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ resources:
3434
images:
3535
- name: docker.io/apache/camel-k
3636
newName: docker.io/apache/camel-k
37-
newTag: 2.9.1-SNAPSHOT
37+
newTag: 2.9.2-SNAPSHOT

pkg/util/defaults/defaults.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ package defaults
2323

2424
const (
2525
// Version --
26-
Version = "2.9.1-SNAPSHOT"
26+
Version = "2.9.2-SNAPSHOT"
2727

2828
// DefaultRuntimeVersion --
2929
DefaultRuntimeVersion = "3.15.3"

script/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ PROJECT_PATH := $(patsubst %/,%,$(dir $(MKFILE_PATH)))
2424
LOCALBIN := $(PROJECT_PATH)/bin
2525

2626
VERSIONFILE := pkg/util/defaults/defaults.go
27-
VERSION ?= 2.9.1-SNAPSHOT
27+
VERSION ?= 2.9.2-SNAPSHOT
2828
LAST_RELEASED_IMAGE_NAME := camel-k-operator
29-
LAST_RELEASED_VERSION ?= 2.9.0
29+
LAST_RELEASED_VERSION ?= 2.9.1
3030
DEFAULT_RUNTIME_VERSION := 3.15.3
3131
# Kubernetes tooling
3232
CONTROLLER_GEN_VERSION := v0.19.0

0 commit comments

Comments
 (0)