Skip to content

Commit b8d6835

Browse files
Prepare release v0.29.0 (#942)
Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com>
1 parent 88758ae commit b8d6835

File tree

8 files changed

+21
-17
lines changed

8 files changed

+21
-17
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
13+
## [0.29.0] - 2025-05-02
14+
1215
### Changed
1316

1417
- `libcnb-cargo`
@@ -382,7 +385,8 @@ version number. See the changelog below for other changes.
382385

383386
- Remove support for legacy BOM. Remove `Launch::bom`, `Build::bom`, `bom::Bom`, `bom::Entry`. ([#489](https://github.com/heroku/libcnb.rs/pull/489))
384387

385-
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.28.1...HEAD
388+
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.29.0...HEAD
389+
[0.29.0]: https://github.com/heroku/libcnb.rs/compare/v0.28.1...v0.29.0
386390
[0.28.1]: https://github.com/heroku/libcnb.rs/compare/v0.28.0...v0.28.1
387391
[0.28.0]: https://github.com/heroku/libcnb.rs/compare/v0.27.0...v0.28.0
388392
[0.27.0]: https://github.com/heroku/libcnb.rs/compare/v0.26.1...v0.27.0

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ members = [
1818
]
1919

2020
[workspace.package]
21-
version = "0.28.1"
21+
version = "0.29.0"
2222
rust-version = "1.85"
2323
edition = "2024"
2424
license = "BSD-3-Clause"
@@ -37,10 +37,10 @@ unwrap_used = "warn"
3737
missing_errors_doc = "allow"
3838

3939
[workspace.dependencies]
40-
libcnb = { version = "=0.28.1", path = "libcnb" }
41-
libcnb-common = { version = "=0.28.1", path = "libcnb-common" }
42-
libcnb-data = { version = "=0.28.1", path = "libcnb-data" }
43-
libcnb-package = { version = "=0.28.1", path = "libcnb-package" }
44-
libcnb-proc-macros = { version = "=0.28.1", path = "libcnb-proc-macros" }
45-
libcnb-test = { version = "=0.28.1", path = "libcnb-test" }
46-
toml = { version = "0.8.20" }
40+
libcnb = { version = "=0.29.0", path = "libcnb" }
41+
libcnb-common = { version = "=0.29.0", path = "libcnb-common" }
42+
libcnb-data = { version = "=0.29.0", path = "libcnb-data" }
43+
libcnb-package = { version = "=0.29.0", path = "libcnb-package" }
44+
libcnb-proc-macros = { version = "=0.29.0", path = "libcnb-proc-macros" }
45+
libcnb-test = { version = "=0.29.0", path = "libcnb-test" }
46+
toml = { version = "0.8.22" }

libcnb-cargo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ path = "src/main.rs"
1919
workspace = true
2020

2121
[dependencies]
22-
clap = { version = "4.5.32", default-features = false, features = [
22+
clap = { version = "4.5.37", default-features = false, features = [
2323
"derive",
2424
"error-context",
2525
"help",

libcnb-package/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ libcnb-data.workspace = true
2323
petgraph = { version = "0.8.1", default-features = false, features = ["std"] }
2424
thiserror = "2.0.12"
2525
uriparse = "0.6.4"
26-
which = "7.0.2"
26+
which = "7.0.3"

libcnb-proc-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ workspace = true
2020
cargo_metadata = "0.19.2"
2121
fancy-regex = { version = "0.14.0", default-features = false, features = ["std"] }
2222
quote = "1.0.40"
23-
syn = { version = "2.0.100", features = ["full"] }
23+
syn = { version = "2.0.101", features = ["full"] }

libcnb-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ thiserror = "2.0.12"
2727
[dev-dependencies]
2828
indoc = "2.0.6"
2929
libcnb.workspace = true
30-
ureq = { version = "3.0.10", default-features = false }
30+
ureq = { version = "3.0.11", default-features = false }

libcnb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ trace = [
3232
]
3333

3434
[dependencies]
35-
anyhow = { version = "1.0.97", optional = true }
35+
anyhow = { version = "1.0.98", optional = true }
3636
cyclonedx-bom = { version = "0.8.0", optional = true }
3737
libcnb-common.workspace = true
3838
libcnb-data.workspace = true

libherokubuildpack/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,18 @@ crossbeam-utils = { version = "0.8.21", optional = true }
3939
# Ideally we'd use the fastest `zlib-ng` backend, however it fails to cross-compile:
4040
# https://github.com/rust-lang/libz-sys/issues/93
4141
# As such we have to use the next best alternate backend, which is `zlib`.
42-
flate2 = { version = "1.1.0", default-features = false, features = ["zlib"], optional = true }
42+
flate2 = { version = "1.1.1", default-features = false, features = ["zlib"], optional = true }
4343
hex = { version = "0.4.3", optional = true }
4444
libcnb = { workspace = true, optional = true }
4545
pathdiff = { version = "0.2.3", optional = true }
4646
semver = { version = "1.0.26", features = ["serde"], optional = true }
4747
serde = { version = "1.0.219", features = ["derive"], optional = true }
48-
sha2 = { version = "0.10.8", optional = true }
48+
sha2 = { version = "0.10.9", optional = true }
4949
tar = { version = "0.4.44", default-features = false, optional = true }
5050
termcolor = { version = "1.4.1", optional = true }
5151
thiserror = { version = "2.0.12", optional = true }
5252
toml = { workspace = true, optional = true }
53-
ureq = { version = "3.0.10", default-features = false, features = ["rustls"], optional = true }
53+
ureq = { version = "3.0.11", default-features = false, features = ["rustls"], optional = true }
5454

5555
[dev-dependencies]
5656
serde_test = "1.0.177"

0 commit comments

Comments
 (0)