diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b8aebc..820840c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [23.1.0] - 2023-01-23 + ### Added - Added `AuthenticationClass` provider static (bump operator-rs to `0.28.0`) ([#123]) diff --git a/Cargo.lock b/Cargo.lock index dc59b6c..b39ab2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1768,7 +1768,7 @@ dependencies = [ [[package]] name = "stackable-commons-operator" -version = "0.5.0-nightly" +version = "23.1.0" dependencies = [ "anyhow", "built", diff --git a/deploy/helm/commons-operator/Chart.yaml b/deploy/helm/commons-operator/Chart.yaml index e591ea4..b4ac1fe 100644 --- a/deploy/helm/commons-operator/Chart.yaml +++ b/deploy/helm/commons-operator/Chart.yaml @@ -1,8 +1,8 @@ --- apiVersion: v2 name: commons-operator -version: "0.5.0-nightly" -appVersion: "0.5.0-nightly" +version: "23.1.0" +appVersion: "23.1.0" description: The Stackable Operator for Stackable Commons home: https://github.com/stackabletech/commons-operator maintainers: diff --git a/docs/antora.yml b/docs/antora.yml index 97bd8da..40b88a7 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,7 +1,3 @@ --- -name: commons-operator -version: "nightly" -title: Stackable Commons Operator -nav: - - modules/ROOT/nav.adoc -prerelease: true +name: home +version: "23.1" diff --git a/docs/modules/ROOT/nav.adoc b/docs/modules/ROOT/nav.adoc deleted file mode 100644 index fc8c36b..0000000 --- a/docs/modules/ROOT/nav.adoc +++ /dev/null @@ -1,6 +0,0 @@ -* xref:installation.adoc[] -* xref:configuration.adoc[] -* xref:usage.adoc[] -* Concepts -** xref:restarter.adoc[] -** xref:pod-enrichment.adoc[] diff --git a/docs/modules/ROOT/pages/authenticationclass.adoc b/docs/modules/ROOT/pages/authenticationclass.adoc deleted file mode 100644 index 14789cf..0000000 --- a/docs/modules/ROOT/pages/authenticationclass.adoc +++ /dev/null @@ -1,3 +0,0 @@ -= `AuthenticationClass` - -Moved to xref:home:concepts:authenticationclass.adoc[] diff --git a/docs/modules/commons-operator/pages/authenticationclass.adoc b/docs/modules/commons-operator/pages/authenticationclass.adoc new file mode 100644 index 0000000..c8f5b24 --- /dev/null +++ b/docs/modules/commons-operator/pages/authenticationclass.adoc @@ -0,0 +1,3 @@ += AuthenticationClass + +Moved to xref:23.1@concepts:authentication.adoc[] diff --git a/docs/modules/ROOT/pages/configuration.adoc b/docs/modules/commons-operator/pages/configuration.adoc similarity index 100% rename from docs/modules/ROOT/pages/configuration.adoc rename to docs/modules/commons-operator/pages/configuration.adoc diff --git a/docs/modules/ROOT/pages/index.adoc b/docs/modules/commons-operator/pages/index.adoc similarity index 100% rename from docs/modules/ROOT/pages/index.adoc rename to docs/modules/commons-operator/pages/index.adoc diff --git a/docs/modules/ROOT/pages/installation.adoc b/docs/modules/commons-operator/pages/installation.adoc similarity index 100% rename from docs/modules/ROOT/pages/installation.adoc rename to docs/modules/commons-operator/pages/installation.adoc diff --git a/docs/modules/ROOT/pages/pod-enrichment.adoc b/docs/modules/commons-operator/pages/pod-enrichment.adoc similarity index 100% rename from docs/modules/ROOT/pages/pod-enrichment.adoc rename to docs/modules/commons-operator/pages/pod-enrichment.adoc diff --git a/docs/modules/ROOT/pages/restarter.adoc b/docs/modules/commons-operator/pages/restarter.adoc similarity index 100% rename from docs/modules/ROOT/pages/restarter.adoc rename to docs/modules/commons-operator/pages/restarter.adoc diff --git a/docs/modules/ROOT/pages/usage.adoc b/docs/modules/commons-operator/pages/usage.adoc similarity index 100% rename from docs/modules/ROOT/pages/usage.adoc rename to docs/modules/commons-operator/pages/usage.adoc diff --git a/docs/modules/commons-operator/partials/nav.adoc b/docs/modules/commons-operator/partials/nav.adoc new file mode 100644 index 0000000..da0a4e5 --- /dev/null +++ b/docs/modules/commons-operator/partials/nav.adoc @@ -0,0 +1,6 @@ +* xref:commons-operator:installation.adoc[] +* xref:commons-operator:configuration.adoc[] +* xref:commons-operator:usage.adoc[] +* Concepts +** xref:commons-operator:restarter.adoc[] +** xref:commons-operator:pod-enrichment.adoc[] diff --git a/rust/operator-binary/Cargo.toml b/rust/operator-binary/Cargo.toml index 5c235d1..3899c60 100644 --- a/rust/operator-binary/Cargo.toml +++ b/rust/operator-binary/Cargo.toml @@ -3,7 +3,7 @@ name = "stackable-commons-operator" authors = ["Stackable GmbH "] description = "Stackable Operator for commons" license = "OSL-3.0" -version = "0.5.0-nightly" +version = "23.1.0" edition = "2021" repository = "https://github.com/stackabletech/commons-operator" publish = false