Skip to content

Commit 08fa672

Browse files
committed
Release 0.6.0 (#278)
Proposing a release that's part of 22.09 to combine the TrinoCatalog feature (#263) with a fix that's a breaking change (#277). By including trino-operator 0.6.0 in 22.09 we don't have a breaking change between platform releases.
1 parent f3ab83e commit 08fa672

File tree

10 files changed

+19
-17
lines changed

10 files changed

+19
-17
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [0.6.0] - 2022-09-08
8+
79
### Changed
810

9-
- BREAKING: TrinoClusters must specify a `catalogLabelSelector`. Previously all TrinoCatalogs within the same namespace where used when `catalogLabelSelector` was not specified, which is unwanted behaviour ([#277]).
11+
- BREAKING: TrinoClusters must specify a `catalogLabelSelector`. Previously all TrinoCatalogs within the same namespace where used when `catalogLabelSelector` was not specified, which is unwanted behavior ([#277]).
1012

1113
[#277]: https://github.com/stackabletech/trino-operator/pull/277
1214

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/helm/trino-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
apiVersion: v2
33
name: trino-operator
4-
version: "0.6.0-nightly"
5-
appVersion: "0.6.0-nightly"
4+
version: "0.6.0"
5+
appVersion: "0.6.0"
66
description: The Stackable Operator for Trino
77
home: https://github.com/stackabletech/trino-operator
88
maintainers:

deploy/manifests/configmap.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,4 +236,4 @@ metadata:
236236
labels:
237237
app.kubernetes.io/name: trino-operator
238238
app.kubernetes.io/instance: trino-operator
239-
app.kubernetes.io/version: "0.6.0-nightly"
239+
app.kubernetes.io/version: "0.6.0"

deploy/manifests/deployment.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
labels:
77
app.kubernetes.io/name: trino-operator
88
app.kubernetes.io/instance: trino-operator
9-
app.kubernetes.io/version: "0.6.0-nightly"
9+
app.kubernetes.io/version: "0.6.0"
1010
spec:
1111
replicas: 1
1212
strategy:
@@ -26,7 +26,7 @@ spec:
2626
containers:
2727
- name: trino-operator
2828
securityContext: {}
29-
image: "docker.stackable.tech/stackable/trino-operator:0.6.0-nightly"
29+
image: "docker.stackable.tech/stackable/trino-operator:0.6.0"
3030
imagePullPolicy: IfNotPresent
3131
resources: {}
3232
volumeMounts:

deploy/manifests/serviceaccount.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
labels:
77
app.kubernetes.io/name: trino-operator
88
app.kubernetes.io/instance: trino-operator
9-
app.kubernetes.io/version: "0.6.0-nightly"
9+
app.kubernetes.io/version: "0.6.0"
1010
---
1111
apiVersion: rbac.authorization.k8s.io/v1
1212
# This cluster role binding allows anyone in the "manager" group to read secrets in any namespace.
@@ -16,7 +16,7 @@ metadata:
1616
labels:
1717
app.kubernetes.io/name: trino-operator
1818
app.kubernetes.io/instance: trino-operator
19-
app.kubernetes.io/version: "0.6.0-nightly"
19+
app.kubernetes.io/version: "0.6.0"
2020
subjects:
2121
- kind: ServiceAccount
2222
name: trino-operator-serviceaccount

docs/antora.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: trino
2-
version: "nightly"
2+
version: "0.6"
33
title: Stackable Operator for Trino
44
nav:
55
- modules/getting_started/nav.adoc
66
- modules/ROOT/nav.adoc
7-
prerelease: true
7+
prerelease: false

docs/templating_vars.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ helm:
33
repo_name: stackable-dev
44
repo_url: https://repo.stackable.tech/repository/helm-dev/
55
versions:
6-
commons: 0.4.0-nightly
7-
secret: 0.6.0-nightly
8-
trino: 0.6.0-nightly
6+
commons: 0.3.0
7+
secret: 0.5.0
8+
trino: 0.6.0

rust/crd/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "OSL-3.0"
66
name = "stackable-trino-crd"
77
repository = "https://github.com/stackabletech/trino-operator"
8-
version = "0.6.0-nightly"
8+
version = "0.6.0"
99

1010
[dependencies]
1111
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.22.0" }

rust/operator-binary/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "OSL-3.0"
77
name = "stackable-trino-operator"
88
repository = "https://github.com/stackabletech/trino-operator"
9-
version = "0.6.0-nightly"
9+
version = "0.6.0"
1010

1111
[dependencies]
1212
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.22.0" }

0 commit comments

Comments
 (0)