From c5dab0ad3e10e148a08918d69fceefafa5e2c482 Mon Sep 17 00:00:00 2001 From: Techassi Date: Thu, 25 Apr 2024 15:40:42 +0200 Subject: [PATCH] chore: Release stackablectl-24.3.2 (#234) * chore: Release stackablectl-24.3.2 * Replace wget commands with curl --- .github/pull_request_template.md | 1 - Cargo.lock | 2 +- Makefile | 2 +- docs/modules/stackablectl/pages/installation.adoc | 10 +++++----- extra/man/stackablectl.1 | 4 ++-- rust/stackablectl/CHANGELOG.md | 2 ++ rust/stackablectl/Cargo.toml | 2 +- 7 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 0d2bb054..aebd52ca 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -32,4 +32,3 @@ - [ ] Feature Tracker has been updated - [ ] Proper release label has been added ``` - diff --git a/Cargo.lock b/Cargo.lock index 3717987d..7b731139 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2830,7 +2830,7 @@ dependencies = [ [[package]] name = "stackablectl" -version = "24.3.1" +version = "24.3.2" dependencies = [ "clap", "clap_complete", diff --git a/Makefile b/Makefile index b9564a60..d9047dc6 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ clean: chart-clean regenerate-charts: chart-clean compile-chart regenerate-nix: - nix run -f . regenerateNixLockfiles + nix run -f . regenerateNixLockfiles build: regenerate-charts regenerate-nix helm-package docker-build diff --git a/docs/modules/stackablectl/pages/installation.adoc b/docs/modules/stackablectl/pages/installation.adoc index 9c37c793..d11b4580 100644 --- a/docs/modules/stackablectl/pages/installation.adoc +++ b/docs/modules/stackablectl/pages/installation.adoc @@ -1,7 +1,7 @@ = Installation :page-aliases: stable@stackablectl::installation.adoc -:latest-release: https://github.com/stackabletech/stackable-cockpit/releases/tag/stackablectl-24.3.1 +:latest-release: https://github.com/stackabletech/stackable-cockpit/releases/tag/stackablectl-24.3.2 :fish-comp-loations: https://fishshell.com/docs/current/completions.html#where-to-put-completions == Using Pre-Compiled Binaries @@ -17,9 +17,9 @@ rename the file to `stackablectl`. You can also use the following command: [source,console] ---- -wget -O stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.1/stackablectl-x86_64-unknown-linux-gnu +curl -L -o stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.2/stackablectl-x86_64-unknown-linux-gnu # or -curl -L -o stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.1/stackablectl-x86_64-unknown-linux-gnu +curl -L -o stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.2/stackablectl-aarch64-unknown-linux-gnu ---- Mark the binary as executable: @@ -39,9 +39,9 @@ then rename the file to `stackablectl`. You can also use the following command: [source,console] ---- -wget -O stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.1/stackablectl-x86_64-apple-darwin +curl -L -o stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.2/stackablectl-x86_64-apple-darwin # or -wget -O stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.1/stackablectl-aarch64-apple-darwin +curl -L -o stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.2/stackablectl-aarch64-apple-darwin ---- Mark the binary as executable: diff --git a/extra/man/stackablectl.1 b/extra/man/stackablectl.1 index 8265071f..9da20c0b 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 24.3.1" +.TH stackablectl 1 "stackablectl 24.3.2" .SH NAME stackablectl \- Command line tool to interact with the Stackable Data Platform .SH SYNOPSIS @@ -98,6 +98,6 @@ EXPERIMENTAL: Launch a debug container for a Pod stackablectl\-help(1) Print this message or the help of the given subcommand(s) .SH VERSION -v24.3.1 +v24.3.2 .SH AUTHORS Stackable GmbH diff --git a/rust/stackablectl/CHANGELOG.md b/rust/stackablectl/CHANGELOG.md index 307e799c..ef4b1a0f 100644 --- a/rust/stackablectl/CHANGELOG.md +++ b/rust/stackablectl/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [24.3.2] - 2024-04-25 + ### Added - Add pre-built binary for `aarch64-unknown-linux-gnu` ([#232]). diff --git a/rust/stackablectl/Cargo.toml b/rust/stackablectl/Cargo.toml index 54e92240..b11f5ea4 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 = "24.3.1" +version = "24.3.2" authors.workspace = true license.workspace = true edition.workspace = true