Skip to content

Commit 741b5f5

Browse files
committed
chore: Release
1 parent 6246a27 commit 741b5f5

File tree

8 files changed

+37
-17
lines changed

8 files changed

+37
-17
lines changed

CHANGELOG.md

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

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

5+
## [0.9.26] - 2025-11-23
6+
7+
### Bug Fixes
8+
9+
- Sign images using old bundle format
10+
- Attempt to fix podman manifest create failures (#615)
11+
12+
### Features
13+
14+
- Support rechunking with build-chunked-oci (#610)
15+
16+
### Miscellaneous Tasks
17+
18+
- Export `OS_ARCH` variable to be from the container… (#614)
19+
- Clean up and consolidate chunked logic
20+
- Clean up and consolidate chunked logic (#616)
21+
522
## [0.9.25] - 2025-11-17
623

724
### Bug Fixes
@@ -16,6 +33,8 @@ All notable changes to this project will be documented in this file.
1633
- Give provenance jobs `actions: read` access
1734
- Retrieve the digest-list artifact directly
1835
- Get digest-list from separate call
36+
- Make sure the tag build spits out the digest list
37+
- Build args should be last
1938

2039
### Features
2140

@@ -43,6 +62,7 @@ All notable changes to this project will be documented in this file.
4362
- Add RUSTUP_PERMIT_COPY_RENAME and clippy fixes
4463
- Print all digests and sign all images (#597)
4564
- Add cosign validation to install.sh (#598)
65+
- Release
4666

4767
### Update
4868

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.25"
10+
version = "0.9.26"
1111

1212
[workspace.dependencies]
1313
bon = "3.8.1"
@@ -70,10 +70,10 @@ pre-release-replacements = [
7070
]
7171

7272
[dependencies]
73-
blue-build-recipe = { version = "=0.9.25", path = "./recipe" }
74-
blue-build-template = { version = "=0.9.25", path = "./template" }
75-
blue-build-utils = { version = "=0.9.25", path = "./utils" }
76-
blue-build-process-management = { version = "=0.9.25", path = "./process" }
73+
blue-build-recipe = { version = "=0.9.26", path = "./recipe" }
74+
blue-build-template = { version = "=0.9.26", path = "./template" }
75+
blue-build-utils = { version = "=0.9.26", path = "./utils" }
76+
blue-build-process-management = { version = "=0.9.26", path = "./process" }
7777
clap-verbosity-flag = "3.0.4"
7878
clap_complete = "4.5.59"
7979
clap_complete_nushell = "4.5.9"

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.25";
39+
version = "v0.9.26";
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.25
5+
VERSION=v0.9.26
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.0.100"
15-
blue-build-utils = { version = "=0.9.25", path = "../utils" }
15+
blue-build-utils = { version = "=0.9.26", path = "../utils" }
1616
indicatif-log-bridge = "0.2.3"
1717
log4rs = { version = "1.4.0", features = ["background_rotation"] }
1818
nu-ansi-term = { version = "0.50.3", features = ["gnu_legacy"] }
@@ -48,7 +48,7 @@ zeroize.workspace = true
4848
[dev-dependencies]
4949
pretty_assertions.workspace = true
5050
rstest.workspace = true
51-
blue-build-utils = { version = "=0.9.25", path = "../utils", features = ["test"] }
51+
blue-build-utils = { version = "=0.9.26", path = "../utils", features = ["test"] }
5252

5353
[lints]
5454
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.25", path = "../utils" }
12+
blue-build-utils = { version = "=0.9.26", 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.0", features = ["serde_json"] }
13-
blue-build-recipe = { version = "=0.9.25", path = "../recipe" }
14-
blue-build-utils = { version = "=0.9.25", path = "../utils" }
13+
blue-build-recipe = { version = "=0.9.26", path = "../recipe" }
14+
blue-build-utils = { version = "=0.9.26", path = "../utils" }
1515

1616
bon.workspace = true
1717
colored.workspace = true

0 commit comments

Comments
 (0)