From 7737fea204ea53ff3880eaf76fe9223bf036b73d Mon Sep 17 00:00:00 2001 From: Techassi Date: Thu, 23 Oct 2025 10:36:24 +0200 Subject: [PATCH 1/2] chore: Release stackable-operator 0.100.1, stackable-versioned 0.8.3 --- Cargo.lock | 6 +++--- crates/stackable-operator/Cargo.toml | 2 +- crates/stackable-versioned-macros/Cargo.toml | 2 +- crates/stackable-versioned/CHANGELOG.md | 2 ++ crates/stackable-versioned/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 74d75cc59..ec614a87d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2909,7 +2909,7 @@ dependencies = [ [[package]] name = "stackable-operator" -version = "0.100.0" +version = "0.100.1" dependencies = [ "chrono", "clap", @@ -3003,7 +3003,7 @@ dependencies = [ [[package]] name = "stackable-versioned" -version = "0.8.2" +version = "0.8.3" dependencies = [ "insta", "k8s-openapi", @@ -3018,7 +3018,7 @@ dependencies = [ [[package]] name = "stackable-versioned-macros" -version = "0.8.2" +version = "0.8.3" dependencies = [ "convert_case", "darling", diff --git a/crates/stackable-operator/Cargo.toml b/crates/stackable-operator/Cargo.toml index c50eed68f..519a26cc8 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.100.0" +version = "0.100.1" authors.workspace = true license.workspace = true edition.workspace = true diff --git a/crates/stackable-versioned-macros/Cargo.toml b/crates/stackable-versioned-macros/Cargo.toml index eaf9a18a5..038681010 100644 --- a/crates/stackable-versioned-macros/Cargo.toml +++ b/crates/stackable-versioned-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stackable-versioned-macros" -version = "0.8.2" +version = "0.8.3" authors.workspace = true license.workspace = true edition.workspace = true diff --git a/crates/stackable-versioned/CHANGELOG.md b/crates/stackable-versioned/CHANGELOG.md index 0af99245a..d388a4d7d 100644 --- a/crates/stackable-versioned/CHANGELOG.md +++ b/crates/stackable-versioned/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.8.3] - 2025-10-23 + ### Fixed - Fix inconsistent use of `.into()` functions in enum `From` impls with variant data ([#1109]). diff --git a/crates/stackable-versioned/Cargo.toml b/crates/stackable-versioned/Cargo.toml index c562b6d15..801252599 100644 --- a/crates/stackable-versioned/Cargo.toml +++ b/crates/stackable-versioned/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stackable-versioned" -version = "0.8.2" +version = "0.8.3" authors.workspace = true license.workspace = true edition.workspace = true From e05ea72f731fbbb25af53e6c0c2dc27cbc5f791b Mon Sep 17 00:00:00 2001 From: Techassi Date: Thu, 23 Oct 2025 10:38:22 +0200 Subject: [PATCH 2/2] chore(operator): Add changelog entry --- crates/stackable-operator/CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index 83077c7fb..6f700ee07 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.100.1] - 2025-10-23 + +### Changed + +- Bump stackable-versioned to 0.8.3, refer to its [changelog](../stackable-versioned/CHANGELOG.md) ([#1110]). + +[#1110]: https://github.com/stackabletech/operator-rs/pull/1110 + ## [0.100.0] - 2025-10-16 ### Added