From d746c485f00d62889869de4af2ea55a7bbcb7ff9 Mon Sep 17 00:00:00 2001 From: xeniape Date: Thu, 22 Aug 2024 11:45:28 +0200 Subject: [PATCH 1/2] chore: release stackable-operator v0.74.0 --- Cargo.lock | 2 +- crates/stackable-operator/CHANGELOG.md | 3 +++ crates/stackable-operator/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index abd999200..357d027e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2903,7 +2903,7 @@ dependencies = [ [[package]] name = "stackable-operator" -version = "0.73.0" +version = "0.74.0" dependencies = [ "chrono", "clap", diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index 444945686..c534877fa 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.74.0] - 2024-08-22 + ### Added - `iter::reverse_if` helper ([#838]). @@ -15,6 +17,7 @@ All notable changes to this project will be documented in this file. - BREAKING: Swap priority order of role group config and role overrides in configuration merging to prioritize overrides in general ([#841]). [#838]: https://github.com/stackabletech/operator-rs/pull/838 +[#840]: https://github.com/stackabletech/operator-rs/pull/840 [#841]: https://github.com/stackabletech/operator-rs/pull/841 [#843]: https://github.com/stackabletech/operator-rs/pull/843 diff --git a/crates/stackable-operator/Cargo.toml b/crates/stackable-operator/Cargo.toml index 81f4178a9..680378578 100644 --- a/crates/stackable-operator/Cargo.toml +++ b/crates/stackable-operator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stackable-operator" description = "Stackable Operator Framework" -version = "0.73.0" +version = "0.74.0" authors.workspace = true license.workspace = true edition.workspace = true From 25cd40758defb77686c1f537bbb57108e5871eb4 Mon Sep 17 00:00:00 2001 From: xeniape Date: Thu, 22 Aug 2024 11:59:39 +0200 Subject: [PATCH 2/2] adjust changelog entry --- crates/stackable-operator/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index c534877fa..0aac40a96 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -8,7 +8,7 @@ All notable changes to this project will be documented in this file. ### Added -- `iter::reverse_if` helper ([#838]). +- Add `iter::reverse_if` helper ([#838]). - Add two new constants `CONFIG_OVERRIDE_FILE_HEADER_KEY` and `CONFIG_OVERRIDE_FILE_FOOTER_KEY` ([#843]). ### Changed