From ad7d81592eea17b5c4c299694eb0b1b910b0478d Mon Sep 17 00:00:00 2001 From: Techassi Date: Fri, 4 Sep 2026 12:53:39 +0200 Subject: [PATCH] chore(stackablectl): Release 1.5.1 --- Cargo.lock | 2 +- Cargo.nix | 2 +- docs/modules/stackablectl/pages/installation.adoc | 8 ++++---- docs/modules/stackablectl/pages/release-notes.adoc | 2 ++ .../partials/release-notes/release-1.5.1.adoc | 4 ++++ extra/man/stackablectl.1 | 4 ++-- rust/stackablectl/CHANGELOG.md | 6 ++++++ rust/stackablectl/Cargo.toml | 2 +- 8 files changed, 21 insertions(+), 9 deletions(-) create mode 100644 docs/modules/stackablectl/partials/release-notes/release-1.5.1.adoc diff --git a/Cargo.lock b/Cargo.lock index 2506bbd0..ca8b946d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3639,7 +3639,7 @@ dependencies = [ [[package]] name = "stackablectl" -version = "1.5.0" +version = "1.5.1" dependencies = [ "built", "clap", diff --git a/Cargo.nix b/Cargo.nix index 4cc17957..0f67ee28 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -12012,7 +12012,7 @@ rec { }; "stackablectl" = rec { crateName = "stackablectl"; - version = "1.5.0"; + version = "1.5.1"; edition = "2021"; crateBin = [ { diff --git a/docs/modules/stackablectl/pages/installation.adoc b/docs/modules/stackablectl/pages/installation.adoc index 3249b1c6..829d36d5 100644 --- a/docs/modules/stackablectl/pages/installation.adoc +++ b/docs/modules/stackablectl/pages/installation.adoc @@ -23,14 +23,14 @@ You can also use the following command: [source,console] ---- -$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.5.0/stackablectl-x86_64-unknown-linux-gnu +$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.5.1/stackablectl-x86_64-unknown-linux-gnu ---- **aarch64** (arm64): [source,console] ---- -$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.5.0/stackablectl-aarch64-unknown-linux-gnu +$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.5.1/stackablectl-aarch64-unknown-linux-gnu ---- Install the binary into a directory in the `$PATH`, and make it executable: @@ -60,14 +60,14 @@ You can also use the following command: [source,console] ---- -$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.5.0/stackablectl-x86_64-apple-darwin +$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.5.1/stackablectl-x86_64-apple-darwin ---- **aarch64** (arm64): [source,console] ---- -$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.5.0/stackablectl-aarch64-apple-darwin +$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.5.1/stackablectl-aarch64-apple-darwin ---- Install the binary into a directory in the `$PATH`, and make it executable: diff --git a/docs/modules/stackablectl/pages/release-notes.adoc b/docs/modules/stackablectl/pages/release-notes.adoc index 488fb4ab..02b35d03 100644 --- a/docs/modules/stackablectl/pages/release-notes.adoc +++ b/docs/modules/stackablectl/pages/release-notes.adoc @@ -6,6 +6,8 @@ A full list of changes is available directly in https://github.com/stackabletech // WARNING: Please keep the empty newlines, otherwise headings are broken. +include::partial$release-notes/release-1.5.1.adoc[] + include::partial$release-notes/release-1.5.0.adoc[] include::partial$release-notes/release-1.4.0.adoc[] diff --git a/docs/modules/stackablectl/partials/release-notes/release-1.5.1.adoc b/docs/modules/stackablectl/partials/release-notes/release-1.5.1.adoc new file mode 100644 index 00000000..a48c4c5e --- /dev/null +++ b/docs/modules/stackablectl/partials/release-notes/release-1.5.1.adoc @@ -0,0 +1,4 @@ +== 1.5.1 + +* Re-enable kube's proxy support. + See https://github.com/stackabletech/stackablectl/pull/453[stackablectl#453]. diff --git a/extra/man/stackablectl.1 b/extra/man/stackablectl.1 index 508e877d..ba831b3d 100644 --- a/extra/man/stackablectl.1 +++ b/extra/man/stackablectl.1 @@ -1,6 +1,6 @@ .ie \n(.g .ds Aq \(aq .el .ds Aq ' -.TH stackablectl 1 "stackablectl 1.5.0" +.TH stackablectl 1 "stackablectl 1.5.1" .SH NAME stackablectl \- Command line tool to interact with the Stackable Data Platform .SH SYNOPSIS @@ -158,6 +158,6 @@ Retrieve version data of the stackablectl installation stackablectl\-help(1) Print this message or the help of the given subcommand(s) .SH VERSION -v1.5.0 +v1.5.1 .SH AUTHORS Stackable GmbH diff --git a/rust/stackablectl/CHANGELOG.md b/rust/stackablectl/CHANGELOG.md index ab397eca..de3459c0 100644 --- a/rust/stackablectl/CHANGELOG.md +++ b/rust/stackablectl/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.5.1] - 2026-09-04 + +- Re-enable kube's proxy support ([#453]). + +[#453]: https://github.com/stackabletech/stackablectl/pull/453 + ## [1.5.0] - 2026-07-22 ### Added diff --git a/rust/stackablectl/Cargo.toml b/rust/stackablectl/Cargo.toml index bb1d7145..455ddf01 100644 --- a/rust/stackablectl/Cargo.toml +++ b/rust/stackablectl/Cargo.toml @@ -2,7 +2,7 @@ name = "stackablectl" description = "Command line tool to interact with the Stackable Data Platform" # See /Cargo.toml -version = "1.5.0" +version = "1.5.1" authors.workspace = true license.workspace = true edition.workspace = true