Skip to content

Commit b2d6fd1

Browse files
Prepare release v0.29.1 (#954)
Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com>
1 parent 67daf7f commit b2d6fd1

File tree

8 files changed

+24
-20
lines changed

8 files changed

+24
-20
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.1] - 2025-08-01
14+
1215
### Fixed
1316

1417
- libcnb:
@@ -390,7 +393,8 @@ version number. See the changelog below for other changes.
390393

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

393-
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.29.0...HEAD
396+
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.29.1...HEAD
397+
[0.29.1]: https://github.com/heroku/libcnb.rs/compare/v0.29.0...v0.29.1
394398
[0.29.0]: https://github.com/heroku/libcnb.rs/compare/v0.28.1...v0.29.0
395399
[0.28.1]: https://github.com/heroku/libcnb.rs/compare/v0.28.0...v0.28.1
396400
[0.28.0]: https://github.com/heroku/libcnb.rs/compare/v0.27.0...v0.28.0

Cargo.toml

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

2020
[workspace.package]
21-
version = "0.29.0"
21+
version = "0.29.1"
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.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" }
40+
libcnb = { version = "=0.29.1", path = "libcnb" }
41+
libcnb-common = { version = "=0.29.1", path = "libcnb-common" }
42+
libcnb-data = { version = "=0.29.1", path = "libcnb-data" }
43+
libcnb-package = { version = "=0.29.1", path = "libcnb-package" }
44+
libcnb-proc-macros = { version = "=0.29.1", path = "libcnb-proc-macros" }
45+
libcnb-test = { version = "=0.29.1", path = "libcnb-test" }
4646
toml = { version = "0.9.4" }

libcnb-cargo/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.37", default-features = false, features = [
22+
clap = { version = "4.5.42", default-features = false, features = [
2323
"derive",
2424
"error-context",
2525
"help",
@@ -33,4 +33,4 @@ thiserror = "2.0.12"
3333

3434
[dev-dependencies]
3535
libcnb-common.workspace = true
36-
tempfile = "3.19.1"
36+
tempfile = "3.20.0"

libcnb-package/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ignore = "0.4.23"
2020
indoc = "2.0.6"
2121
libcnb-common.workspace = true
2222
libcnb-data.workspace = true
23-
petgraph = { version = "0.8.1", default-features = false, features = ["std"] }
23+
petgraph = { version = "0.8.2", default-features = false, features = ["std"] }
2424
thiserror = "2.0.12"
2525
uriparse = "0.6.4"
2626
which = "8.0.0"

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.21.0"
2121
fancy-regex = { version = "0.16.0", default-features = false, features = ["std"] }
2222
quote = "1.0.40"
23-
syn = { version = "2.0.101", features = ["full"] }
23+
syn = { version = "2.0.104", features = ["full"] }

libcnb-test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ libcnb-common.workspace = true
2121
libcnb-data.workspace = true
2222
libcnb-package.workspace = true
2323
regex = "1.11.1"
24-
tempfile = "3.19.1"
24+
tempfile = "3.20.0"
2525
thiserror = "2.0.12"
2626

2727
[dev-dependencies]
2828
indoc = "2.0.6"
2929
libcnb.workspace = true
30-
ureq = { version = "3.0.11", default-features = false }
30+
ureq = { version = "3.0.12", default-features = false }

libcnb/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ opentelemetry = { version = "0.28.0", optional = true, default-features = false
4242
opentelemetry_sdk = { version = "0.28.0", optional = true, default-features = false }
4343
opentelemetry-proto = { version = "0.28.0", optional = true, default-features = false }
4444
serde = { version = "1.0.219", features = ["derive"] }
45-
serde_json = { version = "1.0.140", optional = true }
45+
serde_json = { version = "1.0.142", optional = true }
4646
thiserror = "2.0.12"
4747
tracing = { version = "0.1", optional = true }
4848
tracing-opentelemetry = { version = "0.29", optional = true }
4949
tracing-subscriber = { version = "0.3", optional = true }
5050
toml.workspace = true
5151

5252
[dev-dependencies]
53-
tempfile = "3.19.1"
54-
serde_json = "1.0.140"
53+
tempfile = "3.20.0"
54+
serde_json = "1.0.142"

libherokubuildpack/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ 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.1", default-features = false, features = ["zlib"], optional = true }
42+
flate2 = { version = "1.1.2", 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 }
@@ -50,8 +50,8 @@ 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.11", default-features = false, features = ["rustls"], optional = true }
53+
ureq = { version = "3.0.12", default-features = false, features = ["rustls"], optional = true }
5454

5555
[dev-dependencies]
5656
serde_test = "1.0.177"
57-
tempfile = "3.19.1"
57+
tempfile = "3.20.0"

0 commit comments

Comments
 (0)