Skip to content

Commit

Permalink
chore(release): bump next version to 2.6.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
squakez committed Nov 5, 2024
1 parent 5f09c92 commit 78bf1f6
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
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.13.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: 2.5.0-SNAPSHOT
appVersion: 2.6.0-SNAPSHOT

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:2.5.0-SNAPSHOT
image: docker.io/apache/camel-k:2.6.0-SNAPSHOT
global: "false"
resources: {}
securityContext: {}
Expand Down
2 changes: 1 addition & 1 deletion java/crds/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.camel.k</groupId>
<artifactId>camel-k-crds</artifactId>
<version>2.5.0-SNAPSHOT</version>
<version>2.6.0-SNAPSHOT</version>
<packaging>jar</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion java/maven-logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.camel.k</groupId>
<artifactId>camel-k-maven-logging</artifactId>
<version>2.5.0-SNAPSHOT</version>
<version>2.6.0-SNAPSHOT</version>
<description>Set of dependencies used for structural logging of Maven output</description>
<packaging>pom</packaging>

Expand Down
6 changes: 3 additions & 3 deletions pkg/resources/config/manager/operator-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ metadata:
name: camel-k-operator
app.kubernetes.io/component: operator
app.kubernetes.io/name: camel-k
app.kubernetes.io/version: "2.5.0-SNAPSHOT"
app.kubernetes.io/version: "2.6.0-SNAPSHOT"
spec:
replicas: 1
strategy:
Expand All @@ -41,12 +41,12 @@ spec:
app: "camel-k"
app.kubernetes.io/component: operator
app.kubernetes.io/name: camel-k
app.kubernetes.io/version: "2.5.0-SNAPSHOT"
app.kubernetes.io/version: "2.6.0-SNAPSHOT"
spec:
serviceAccountName: camel-k-operator
containers:
- name: camel-k-operator
image: docker.io/apache/camel-k:2.5.0-SNAPSHOT
image: docker.io/apache/camel-k:2.6.0-SNAPSHOT
imagePullPolicy: IfNotPresent
command:
- kamel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ metadata:
capabilities: Full Lifecycle
categories: Integration & Delivery
certified: "false"
containerImage: docker.io/apache/camel-k:2.5.0-SNAPSHOT
createdAt: 2024-08-07T07:33:48Z
containerImage: docker.io/apache/camel-k:2.6.0-SNAPSHOT
createdAt: 2024-11-05T17:48:03Z
description: Apache Camel K is a lightweight integration platform, born on Kubernetes,
with serverless superpowers.
operators.operatorframework.io/builder: operator-sdk-v1.16.0
operators.operatorframework.io/internal-objects: '["builds.camel.apache.org","integrationkits.camel.apache.org","camelcatalogs.camel.apache.org"]'
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
repository: https://github.com/apache/camel-k
support: Camel
name: camel-k.v2.5.0
name: camel-k.v2.6.0
spec:
apiservicedefinitions: {}
customresourcedefinitions:
Expand Down Expand Up @@ -174,8 +174,8 @@ spec:
minKubeVersion: 1.24.0
provider:
name: The Apache Software Foundation
replaces: camel-k-operator.v2.4.0
replaces: camel-k-operator.v2.5.0
selector:
matchLabels:
name: camel-k-operator
version: 2.5.0
version: 2.6.0
2 changes: 1 addition & 1 deletion pkg/resources/config/manifests/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ patchesStrategicMerge:
images:
- name: docker.io/apache/camel-k
newName: docker.io/apache/camel-k
newTag: 2.5.0-SNAPSHOT
newTag: 2.6.0-SNAPSHOT
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 = "2.5.0-SNAPSHOT"
Version = "2.6.0-SNAPSHOT"

// DefaultRuntimeVersion --
DefaultRuntimeVersion = "3.15.0"
Expand Down
4 changes: 2 additions & 2 deletions script/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ PROJECT_PATH := $(patsubst %/,%,$(dir $(MKFILE_PATH)))
LOCALBIN := $(PROJECT_PATH)/bin

VERSIONFILE := pkg/util/defaults/defaults.go
VERSION ?= 2.5.0-SNAPSHOT
VERSION ?= 2.6.0-SNAPSHOT
LAST_RELEASED_IMAGE_NAME := camel-k-operator
LAST_RELEASED_VERSION ?= 2.4.0
LAST_RELEASED_VERSION ?= 2.5.0
DEFAULT_RUNTIME_VERSION := 3.15.0
CONTROLLER_GEN_VERSION := v0.15.0
CODEGEN_VERSION := v0.29.7
Expand Down

0 comments on commit 78bf1f6

Please sign in to comment.