Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions docs/modules/stackablectl/pages/installation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 2 additions & 0 deletions docs/modules/stackablectl/pages/release-notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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[]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
== 1.5.1

* Re-enable kube's proxy support.
See https://github.com/stackabletech/stackablectl/pull/453[stackablectl#453].
4 changes: 2 additions & 2 deletions extra/man/stackablectl.1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions rust/stackablectl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion rust/stackablectl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "stackablectl"
description = "Command line tool to interact with the Stackable Data Platform"
# See <project-root>/Cargo.toml
version = "1.5.0"
version = "1.5.1"
authors.workspace = true
license.workspace = true
edition.workspace = true
Expand Down
Loading