From 4ebb382af0f7c9f405d01c05662831718695d87a Mon Sep 17 00:00:00 2001 From: Techassi Date: Fri, 7 Nov 2025 18:34:49 +0100 Subject: [PATCH 1/3] chore(boil): Release 0.1.6 --- rust/boil/CHANGELOG.md | 8 ++++++++ rust/boil/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/rust/boil/CHANGELOG.md b/rust/boil/CHANGELOG.md index 49bf99925..fccd2e975 100644 --- a/rust/boil/CHANGELOG.md +++ b/rust/boil/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. +## [0.1.6] - 2025-11-07 + +[See complete diff](https://github.com/stackabletech/docker-images/compare/boil-0.1.5..boil-0.1.6) + +### Bug Fixes + +- Set correct release version in container image metadata ([#1341](https://github.com/stackabletech/docker-images/pull/1341)). + ## [0.1.5] - 2025-10-14 [See complete diff](https://github.com/stackabletech/docker-images/compare/boil-0.1.4..boil-0.1.5) diff --git a/rust/boil/Cargo.toml b/rust/boil/Cargo.toml index d31e4c30f..0bea38bbc 100644 --- a/rust/boil/Cargo.toml +++ b/rust/boil/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boil" -version = "0.1.5" # Managed by .scripts/release_boil.sh +version = "0.1.6" # Managed by .scripts/release_boil.sh edition = "2024" authors.workspace = true license.workspace = true From a887a46058c308c9ce187de6a3c0c47bcb0e100b Mon Sep 17 00:00:00 2001 From: Techassi Date: Fri, 7 Nov 2025 18:38:32 +0100 Subject: [PATCH 2/3] chore: Update Cargo.lock --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 7be60f532..0d69f8a7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -111,7 +111,7 @@ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" [[package]] name = "boil" -version = "0.1.5" +version = "0.1.6" dependencies = [ "cap-std", "clap", From 9c849309e645ae6abff2ea3b253a96e53517a1e3 Mon Sep 17 00:00:00 2001 From: Techassi Date: Fri, 7 Nov 2025 18:40:22 +0100 Subject: [PATCH 3/3] chore: Update release script --- .scripts/release_boil.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.scripts/release_boil.sh b/.scripts/release_boil.sh index d37958f85..9ed1b654e 100755 --- a/.scripts/release_boil.sh +++ b/.scripts/release_boil.sh @@ -47,6 +47,7 @@ git-cliff --config rust/boil/cliff.toml --tag "$BUMPED_VERSION" > rust/boil/CHAN echo "Updating the version to $CLEANED_BUMPED_VERSION in the Cargo.toml file" sed -E -i "s/^version = .* $MESSAGE$/version = \"$CLEANED_BUMPED_VERSION\" $MESSAGE/" rust/boil/Cargo.toml +cargo check echo "Committing changes" # Make sure that there are changes to be committed