Skip to content

Commit 688696f

Browse files
committed
chore(release): bump next version to 2.5.2-SNAPSHOT
1 parent 72b9409 commit 688696f

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
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.5.1
38+
appVersion: 2.5.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.5.1
26+
image: docker.io/apache/camel-k:2.5.2-SNAPSHOT
2727
global: "false"
2828
resources: {}
2929
securityContext: {}

java/maven-logging/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<modelVersion>4.0.0</modelVersion>
2323
<groupId>org.apache.camel.k</groupId>
2424
<artifactId>camel-k-maven-logging</artifactId>
25-
<version>2.5.1-SNAPSHOT</version>
25+
<version>2.5.2-SNAPSHOT</version>
2626
<description>Set of dependencies used for structural logging of Maven output</description>
2727
<packaging>pom</packaging>
2828

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.5.1"
28+
app.kubernetes.io/version: "2.5.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.5.1"
44+
app.kubernetes.io/version: "2.5.2-SNAPSHOT"
4545
spec:
4646
serviceAccountName: camel-k-operator
4747
containers:
4848
- name: camel-k-operator
49-
image: docker.io/apache/camel-k:2.5.1
49+
image: docker.io/apache/camel-k:2.5.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.5.1
26-
createdAt: 2024-11-05T17:49:03Z
25+
containerImage: docker.io/apache/camel-k:2.5.2-SNAPSHOT
26+
createdAt: 2025-02-07T12:10:19Z
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.5.1
34+
name: camel-k.v2.5.2
3535
spec:
3636
apiservicedefinitions: {}
3737
customresourcedefinitions:
@@ -174,8 +174,8 @@ spec:
174174
minKubeVersion: 1.24.0
175175
provider:
176176
name: The Apache Software Foundation
177-
replaces: camel-k-operator.v2.5.0
177+
replaces: camel-k-operator.v2.5.1
178178
selector:
179179
matchLabels:
180180
name: camel-k-operator
181-
version: 2.5.1
181+
version: 2.5.2

pkg/resources/config/manifests/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ patchesStrategicMerge:
3636
images:
3737
- name: docker.io/apache/camel-k
3838
newName: docker.io/apache/camel-k
39-
newTag: 2.5.1-SNAPSHOT
39+
newTag: 2.5.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.5.1"
26+
Version = "2.5.2-SNAPSHOT"
2727

2828
// DefaultRuntimeVersion --
2929
DefaultRuntimeVersion = "3.15.2"

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.5.1
27+
VERSION ?= 2.5.2-SNAPSHOT
2828
LAST_RELEASED_IMAGE_NAME := camel-k-operator
29-
LAST_RELEASED_VERSION ?= 2.5.0
29+
LAST_RELEASED_VERSION ?= 2.5.1
3030
DEFAULT_RUNTIME_VERSION := 3.15.2
3131
CONTROLLER_GEN_VERSION := v0.15.0
3232
CODEGEN_VERSION := v0.29.7

0 commit comments

Comments
 (0)