Skip to content

Commit

Permalink
chore: bump next version to 2.4.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
squakez committed Apr 8, 2024
1 parent 0f439b3 commit 61658be
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.3.0-SNAPSHOT
appVersion: 2.4.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.3.0-SNAPSHOT
image: docker.io/apache/camel-k:2.4.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.3.0-SNAPSHOT</version>
<version>2.4.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.3.0-SNAPSHOT</version>
<version>2.4.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.3.0-SNAPSHOT"
app.kubernetes.io/version: "2.4.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.3.0-SNAPSHOT"
app.kubernetes.io/version: "2.4.0-SNAPSHOT"
spec:
serviceAccountName: camel-k-operator
containers:
- name: camel-k-operator
image: docker.io/apache/camel-k:2.3.0-SNAPSHOT
image: docker.io/apache/camel-k:2.4.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.3.0-SNAPSHOT
createdAt: 2024-02-16T10:30:52Z
containerImage: docker.io/apache/camel-k:2.4.0-SNAPSHOT
createdAt: 2024-04-08T13:18:44Z
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.3.0
name: camel-k.v2.4.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -170,8 +170,8 @@ spec:
minKubeVersion: 1.11.0
provider:
name: The Apache Software Foundation
replaces: camel-k-operator.v2.2.0
replaces: camel-k-operator.v2.3.0
selector:
matchLabels:
name: camel-k-operator
version: 2.3.0
version: 2.4.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 @@ -37,4 +37,4 @@ patchesStrategicMerge:
images:
- name: docker.io/apache/camel-k
newName: docker.io/apache/camel-k
newTag: 2.3.0-SNAPSHOT
newTag: 2.4.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.3.0-SNAPSHOT"
Version = "2.4.0-SNAPSHOT"

// DefaultRuntimeVersion --
DefaultRuntimeVersion = "3.8.1"
Expand Down
4 changes: 2 additions & 2 deletions script/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
SHELL := /bin/bash

VERSIONFILE := pkg/util/defaults/defaults.go
VERSION ?= 2.3.0-SNAPSHOT
VERSION ?= 2.4.0-SNAPSHOT
LAST_RELEASED_IMAGE_NAME := camel-k-operator
LAST_RELEASED_VERSION ?= 2.2.0
LAST_RELEASED_VERSION ?= 2.3.0
DEFAULT_RUNTIME_VERSION := 3.8.1
CONTROLLER_GEN_VERSION := v0.6.1
CODEGEN_VERSION := v0.27.4
Expand Down

0 comments on commit 61658be

Please sign in to comment.