Skip to content

Commit 6a80ee7

Browse files
committed
Release 0.17.0
1 parent e1d3dd0 commit 6a80ee7

File tree

37 files changed

+622
-64
lines changed

37 files changed

+622
-64
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ VERSION := 0.17.0-SNAPSHOT
1717
SNAPSHOT_VERSION := 0.17.0-SNAPSHOT
1818
OPERATOR_VERSION := $(subst -SNAPSHOT,,$(VERSION))
1919
LAST_RELEASED_IMAGE_NAME := yaks-operator
20-
LAST_RELEASED_VERSION := 0.16.0
20+
LAST_RELEASED_VERSION := 0.17.0
2121

2222
CONTROLLER_GEN_VERSION := v0.6.1
2323
CODEGEN_VERSION := v0.25.6
@@ -146,7 +146,7 @@ release: prepare-release
146146
release-local: prepare-release
147147
./script/release.sh --release-version $(VERSION) --snapshot-version $(SNAPSHOT_VERSION) --image $(IMAGE_NAME) --go-flags '$(GOFLAGS)' --git-remote $(RELEASE_GIT_REMOTE) --local-release --no-git-push --no-docker-push
148148

149-
release-major: prepare-release
149+
release-major:
150150
./script/release.sh --release-version $(VERSION) --snapshot-version $(SNAPSHOT_VERSION) --image $(IMAGE_NAME) --go-flags '$(GOFLAGS)' --git-remote $(RELEASE_GIT_REMOTE) --skip-tests --major-release
151151

152152
release-snapshot: prepare-release

config/manager/operator-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ spec:
3939
serviceAccountName: yaks-operator
4040
containers:
4141
- name: yaks-operator
42-
image: docker.io/citrusframework/yaks:0.17.0-SNAPSHOT
42+
image: docker.io/citrusframework/yaks:0.17.0
4343
command:
4444
- yaks
4545
- operator

config/manifests/bases/yaks.clusterserviceversion.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ metadata:
2222
capabilities: Full Lifecycle
2323
categories: Integration & Delivery
2424
certified: "false"
25-
containerImage: docker.io/citrusframework/yaks:0.17.0-SNAPSHOT
25+
containerImage: docker.io/citrusframework/yaks:0.17.0
2626
createdAt: 2023-04-26T20:37:25Z
2727
description: YAKS is a platform to enable Cloud Native BDD testing on Kubernetes.
2828
operators.operatorframework.io/builder: operator-sdk-v1.28.0
2929
operators.operatorframework.io/internal-objects: '["instances.yaks.citrusframework.org"]'
3030
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
3131
repository: https://github.com/citrusframework/yaks
3232
support: Citrus Framework
33-
name: yaks.v0.17.0-SNAPSHOT
33+
name: yaks.v0.17.0
3434
namespace: placeholder
3535
spec:
3636
apiservicedefinitions: {}
@@ -123,4 +123,4 @@ spec:
123123
selector:
124124
matchLabels:
125125
name: yaks-operator
126-
version: 0.17.0-SNAPSHOT
126+
version: 0.17.0

config/manifests/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ resources:
3232
images:
3333
- name: docker.io/citrusframework/yaks
3434
newName: docker.io/citrusframework/yaks
35-
newTag: 0.17.0-SNAPSHOT
35+
newTag: 0.17.0
File renamed without changes.
File renamed without changes.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ metadata:
5757
capabilities: Full Lifecycle
5858
categories: Integration & Delivery
5959
certified: "false"
60-
containerImage: docker.io/citrusframework/yaks:0.17.0-SNAPSHOT
60+
containerImage: docker.io/citrusframework/yaks:0.17.0
6161
createdAt: "2023-04-26T20:37:31Z"
6262
description: YAKS is a platform to enable Cloud Native BDD testing on Kubernetes.
6363
operators.operatorframework.io/builder: operator-sdk-v1.28.0
6464
operators.operatorframework.io/internal-objects: '["instances.yaks.citrusframework.org"]'
6565
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
6666
repository: https://github.com/citrusframework/yaks
6767
support: Citrus Framework
68-
name: yaks-operator.v0.17.0-SNAPSHOT
68+
name: yaks-operator.v0.17.0
6969
namespace: placeholder
7070
spec:
7171
apiservicedefinitions: {}
@@ -175,7 +175,7 @@ spec:
175175
valueFrom:
176176
fieldRef:
177177
fieldPath: metadata.namespace
178-
image: docker.io/citrusframework/yaks:0.17.0-SNAPSHOT
178+
image: docker.io/citrusframework/yaks:0.17.0
179179
imagePullPolicy: IfNotPresent
180180
name: yaks-operator
181181
resources: {}
@@ -435,4 +435,4 @@ spec:
435435
selector:
436436
matchLabels:
437437
name: yaks-operator
438-
version: 0.17.0-SNAPSHOT
438+
version: 0.17.0

deploy/olm-catalog/yaks/yaks.package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# ---------------------------------------------------------------------------
1717

1818
channels:
19-
- currentCSV: yaks-operator.v0.17.0-SNAPSHOT
19+
- currentCSV: yaks-operator.v0.17.0
2020
name: alpha
2121
defaultChannel: alpha
2222
packageName: yaks

java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<modelVersion>4.0.0</modelVersion>
2828
<groupId>org.citrusframework.yaks</groupId>
2929
<artifactId>yaks-parent</artifactId>
30-
<version>0.17.0-SNAPSHOT</version>
30+
<version>0.17.0</version>
3131
<name>YAKS</name>
3232
<description>Platform to enable Cloud Native BDD testing on Kubernetes</description>
3333
<packaging>pom</packaging>

java/runtime/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>org.citrusframework.yaks</groupId>
2222
<artifactId>yaks-parent</artifactId>
23-
<version>0.17.0-SNAPSHOT</version>
23+
<version>0.17.0</version>
2424
<relativePath>../pom.xml</relativePath>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)