Skip to content

Commit a3cd3a0

Browse files
committed
chore: Release
1 parent 84e964e commit a3cd3a0

File tree

8 files changed

+32
-17
lines changed

8 files changed

+32
-17
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.9.24] - 2025-10-07
6+
7+
### Bug Fixes
8+
9+
- Move build script logic to generate command
10+
- Find the correct credentials for inspecting
11+
- Add timeout of 10 seconds for retrieving schema files
12+
13+
### Miscellaneous Tasks
14+
15+
- Bump cosign to 2.6.1
16+
- Add extra error context for schema validator
17+
- Allow vendoring libgit2 (#562)
18+
519
## [0.9.23] - 2025-10-02
620

721
### Bug Fixes
@@ -33,6 +47,7 @@ All notable changes to this project will be documented in this file.
3347
- Create scorecard.yml
3448
- Add scorecard badge
3549
- Use /usr/lib/opt for optfix to match dnf and rpm-ostree modules
50+
- Release
3651

3752
## [0.9.22] - 2025-07-31
3853

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2024"
77
repository = "https://github.com/blue-build/cli"
88
license = "Apache-2.0"
99
categories = ["command-line-utilities"]
10-
version = "0.9.23"
10+
version = "0.9.24"
1111

1212
[workspace.dependencies]
1313
bon = "3"
@@ -69,10 +69,10 @@ pre-release-replacements = [
6969
]
7070

7171
[dependencies]
72-
blue-build-recipe = { version = "=0.9.23", path = "./recipe" }
73-
blue-build-template = { version = "=0.9.23", path = "./template" }
74-
blue-build-utils = { version = "=0.9.23", path = "./utils" }
75-
blue-build-process-management = { version = "=0.9.23", path = "./process" }
72+
blue-build-recipe = { version = "=0.9.24", path = "./recipe" }
73+
blue-build-template = { version = "=0.9.24", path = "./template" }
74+
blue-build-utils = { version = "=0.9.24", path = "./utils" }
75+
blue-build-process-management = { version = "=0.9.24", path = "./process" }
7676
clap-verbosity-flag = "3"
7777
clap_complete = "4"
7878
clap_complete_nushell = "4"

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
default = bluebuild;
3737
bluebuild = pkgs.rustPlatform.buildRustPackage {
3838
pname = "bluebuild";
39-
version = "v0.9.23";
39+
version = "v0.9.24";
4040

4141
src = pkgs.lib.cleanSource ./.;
4242
cargoLock.lockFile = ./Cargo.lock;

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -euo pipefail
44

5-
VERSION=v0.9.23
5+
VERSION=v0.9.24
66

77
# Container runtime
88
function cr() {

process/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ path = "process.rs"
1212

1313
[dependencies]
1414
anyhow = "1"
15-
blue-build-utils = { version = "=0.9.23", path = "../utils" }
15+
blue-build-utils = { version = "=0.9.24", path = "../utils" }
1616
indicatif-log-bridge = "0.2"
1717
log4rs = { version = "1", features = ["background_rotation"] }
1818
nu-ansi-term = { version = "0.50", features = ["gnu_legacy"] }
@@ -47,7 +47,7 @@ zeroize.workspace = true
4747
[dev-dependencies]
4848
pretty_assertions.workspace = true
4949
rstest.workspace = true
50-
blue-build-utils = { version = "=0.9.23", path = "../utils", features = ["test"] }
50+
blue-build-utils = { version = "=0.9.24", path = "../utils", features = ["test"] }
5151

5252
[lints]
5353
workspace = true

recipe/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license.workspace = true
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
blue-build-utils = { version = "=0.9.23", path = "../utils" }
12+
blue-build-utils = { version = "=0.9.24", path = "../utils" }
1313

1414
cached.workspace = true
1515
colored.workspace = true

template/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ license.workspace = true
1010

1111
[dependencies]
1212
askama = { version = "0.14", features = ["serde_json"] }
13-
blue-build-recipe = { version = "=0.9.23", path = "../recipe" }
14-
blue-build-utils = { version = "=0.9.23", path = "../utils" }
13+
blue-build-recipe = { version = "=0.9.24", path = "../recipe" }
14+
blue-build-utils = { version = "=0.9.24", path = "../utils" }
1515
oci-distribution.workspace = true
1616

1717
chrono.workspace = true

0 commit comments

Comments
 (0)