Skip to content

Commit e95a4e7

Browse files
authored
chore: Release stackablectl-24.3.6 (#304)
* chore: Release stackablectl-24.3.6 * Add comment to make regenerate-nix command
1 parent a492033 commit e95a4e7

File tree

8 files changed

+23
-12
lines changed

8 files changed

+23
-12
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ repos:
9090
language: system
9191
entry: make regenerate-nix
9292
stages: [commit, merge-commit, manual]
93-
pass_filename: false
93+
pass_filenames: false

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.nix

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,11 @@ clean: chart-clean
7575

7676
regenerate-charts: chart-clean compile-chart
7777

78+
# The explicit '--extra-experimental-features flakes' parameter was added,
79+
# because the command requires Flakes to be enabled, but most non-Nix users
80+
# don't enable them via the global nix rc file.
7881
regenerate-nix:
79-
nix run -f . regenerateNixLockfiles
82+
nix run --extra-experimental-features flakes -f . regenerateNixLockfiles
8083

8184
build: regenerate-charts regenerate-nix helm-package docker-build
8285

docs/modules/stackablectl/pages/installation.adoc

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
= Installation
22
:page-aliases: stable@stackablectl::installation.adoc
33

4-
:latest-release: https://github.com/stackabletech/stackable-cockpit/releases/tag/stackablectl-24.3.5
4+
:latest-release: https://github.com/stackabletech/stackable-cockpit/releases/tag/stackablectl-24.3.6
55
:fish-comp-loations: https://fishshell.com/docs/current/completions.html#where-to-put-completions
66

77
== Using Pre-Compiled Binaries
@@ -20,9 +20,9 @@ rename the file to `stackablectl`. You can also use the following command:
2020
2121
[source,console]
2222
----
23-
$ curl -L -o stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.5/stackablectl-x86_64-unknown-linux-gnu
23+
$ curl -L -o stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.6/stackablectl-x86_64-unknown-linux-gnu
2424
# or
25-
$ curl -L -o stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.5/stackablectl-aarch64-unknown-linux-gnu
25+
$ curl -L -o stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.6/stackablectl-aarch64-unknown-linux-gnu
2626
----
2727
2828
Mark the binary as executable:
@@ -44,9 +44,9 @@ then rename the file to `stackablectl`. You can also use the following command:
4444
4545
[source,console]
4646
----
47-
$ curl -L -o stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.5/stackablectl-x86_64-apple-darwin
47+
$ curl -L -o stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.6/stackablectl-x86_64-apple-darwin
4848
# or
49-
$ curl -L -o stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.5/stackablectl-aarch64-apple-darwin
49+
$ curl -L -o stackablectl https://github.com/stackabletech/stackable-cockpit/releases/download/stackablectl-24.3.6/stackablectl-aarch64-apple-darwin
5050
----
5151
5252
Mark the binary as executable:

extra/man/stackablectl.1

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/stackablectl/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [24.3.6] - 2024-06-24
8+
9+
### Fixed
10+
11+
- Remove error message trimming in error report ([#303]).
12+
13+
[#303]: https://github.com/stackabletech/stackable-cockpit/pull/303
14+
715
## [24.3.5] - 2024-06-17
816

917
### Fixed

rust/stackablectl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "stackablectl"
33
description = "Command line tool to interact with the Stackable Data Platform"
44
# See <project-root>/Cargo.toml
5-
version = "24.3.5"
5+
version = "24.3.6"
66
authors.workspace = true
77
license.workspace = true
88
edition.workspace = true

0 commit comments

Comments
 (0)