Skip to content

Commit ef0d731

Browse files
committed
chore: Release
1 parent 1de8512 commit ef0d731

File tree

8 files changed

+31
-17
lines changed

8 files changed

+31
-17
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,26 @@
22

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

5+
## [0.9.20] - 2025-07-17
6+
7+
### Features
8+
9+
- Add ability to mount secrets
10+
11+
### Miscellaneous Tasks
12+
13+
- Bump cosign to 2.5.3
14+
515
## [0.9.19] - 2025-07-08
616

717
### Bug Fixes
818

919
- Only set to config/ if files/ doesn't exist
1020

21+
### Miscellaneous Tasks
22+
23+
- Release
24+
1125
## [0.9.18] - 2025-06-30
1226

1327
### Bug Fixes

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.19"
10+
version = "0.9.20"
1111

1212
[workspace.dependencies]
1313
bon = "3"
@@ -66,10 +66,10 @@ pre-release-replacements = [
6666
]
6767

6868
[dependencies]
69-
blue-build-recipe = { version = "=0.9.19", path = "./recipe" }
70-
blue-build-template = { version = "=0.9.19", path = "./template" }
71-
blue-build-utils = { version = "=0.9.19", path = "./utils" }
72-
blue-build-process-management = { version = "=0.9.19", path = "./process" }
69+
blue-build-recipe = { version = "=0.9.20", path = "./recipe" }
70+
blue-build-template = { version = "=0.9.20", path = "./template" }
71+
blue-build-utils = { version = "=0.9.20", path = "./utils" }
72+
blue-build-process-management = { version = "=0.9.20", path = "./process" }
7373
clap-verbosity-flag = "3"
7474
clap_complete = "4"
7575
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.19";
39+
version = "v0.9.20";
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.19
5+
VERSION=v0.9.20
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.19", path = "../utils" }
15+
blue-build-utils = { version = "=0.9.20", 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"] }
@@ -45,7 +45,7 @@ zeroize.workspace = true
4545

4646
[dev-dependencies]
4747
rstest.workspace = true
48-
blue-build-utils = { version = "=0.9.19", path = "../utils", features = ["test"] }
48+
blue-build-utils = { version = "=0.9.20", path = "../utils", features = ["test"] }
4949

5050
[lints]
5151
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.19", path = "../utils" }
12+
blue-build-utils = { version = "=0.9.20", path = "../utils" }
1313

1414
colored.workspace = true
1515
log.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.19", path = "../recipe" }
14-
blue-build-utils = { version = "=0.9.19", path = "../utils" }
13+
blue-build-recipe = { version = "=0.9.20", path = "../recipe" }
14+
blue-build-utils = { version = "=0.9.20", path = "../utils" }
1515

1616
chrono.workspace = true
1717
log.workspace = true

0 commit comments

Comments
 (0)