Skip to content

Commit 0938dc5

Browse files
Prepare release v0.27.0 (#914)
Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com>
1 parent 254cbae commit 0938dc5

File tree

10 files changed

+39
-35
lines changed

10 files changed

+39
-35
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.27.0] - 2025-02-27
14+
1215
### Changed
1316

1417
- Raised Minimum Supported Rust Version (MSRV) to `1.85`. ([#913](https://github.com/heroku/libcnb.rs/pull/913))
@@ -354,7 +357,8 @@ version number. See the changelog below for other changes.
354357

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

357-
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.26.1...HEAD
360+
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.27.0...HEAD
361+
[0.27.0]: https://github.com/heroku/libcnb.rs/compare/v0.26.1...v0.27.0
358362
[0.26.1]: https://github.com/heroku/libcnb.rs/compare/v0.26.0...v0.26.1
359363
[0.26.0]: https://github.com/heroku/libcnb.rs/compare/v0.25.0...v0.26.0
360364
[0.25.0]: https://github.com/heroku/libcnb.rs/compare/v0.24.0...v0.25.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.26.1"
21+
version = "0.27.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.26.1", path = "libcnb" }
41-
libcnb-common = { version = "=0.26.1", path = "libcnb-common" }
42-
libcnb-data = { version = "=0.26.1", path = "libcnb-data" }
43-
libcnb-package = { version = "=0.26.1", path = "libcnb-package" }
44-
libcnb-proc-macros = { version = "=0.26.1", path = "libcnb-proc-macros" }
45-
libcnb-test = { version = "=0.26.1", path = "libcnb-test" }
46-
toml = { version = "0.8.19" }
40+
libcnb = { version = "=0.27.0", path = "libcnb" }
41+
libcnb-common = { version = "=0.27.0", path = "libcnb-common" }
42+
libcnb-data = { version = "=0.27.0", path = "libcnb-data" }
43+
libcnb-package = { version = "=0.27.0", path = "libcnb-package" }
44+
libcnb-proc-macros = { version = "=0.27.0", path = "libcnb-proc-macros" }
45+
libcnb-test = { version = "=0.27.0", path = "libcnb-test" }
46+
toml = { version = "0.8.20" }

libcnb-cargo/Cargo.toml

Lines changed: 3 additions & 3 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.23", default-features = false, features = [
22+
clap = { version = "4.5.31", default-features = false, features = [
2323
"derive",
2424
"error-context",
2525
"help",
@@ -29,8 +29,8 @@ clap = { version = "4.5.23", default-features = false, features = [
2929
libcnb-data.workspace = true
3030
libcnb-package.workspace = true
3131
pathdiff = "0.2.3"
32-
thiserror = "2.0.6"
32+
thiserror = "2.0.11"
3333

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

libcnb-common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ include = ["src/**/*", "LICENSE", "README.md"]
1414
workspace = true
1515

1616
[dependencies]
17-
serde = { version = "1.0.215", features = ["derive"] }
18-
thiserror = "2.0.6"
17+
serde = { version = "1.0.218", features = ["derive"] }
18+
thiserror = "2.0.11"
1919
toml.workspace = true

libcnb-data/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ workspace = true
1717
[dependencies]
1818
fancy-regex = { version = "0.14.0", default-features = false, features = ["std"] }
1919
libcnb-proc-macros.workspace = true
20-
serde = { version = "1.0.215", features = ["derive"] }
21-
thiserror = "2.0.6"
20+
serde = { version = "1.0.218", features = ["derive"] }
21+
thiserror = "2.0.11"
2222
toml.workspace = true
2323
uriparse = "0.6.4"
2424

libcnb-package/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ indoc = "2.0.5"
2121
libcnb-common.workspace = true
2222
libcnb-data.workspace = true
2323
petgraph = { version = "0.7.1", default-features = false }
24-
thiserror = "2.0.6"
24+
thiserror = "2.0.11"
2525
uriparse = "0.6.4"
26-
which = "7.0.0"
26+
which = "7.0.2"

libcnb-proc-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ workspace = true
1919
[dependencies]
2020
cargo_metadata = "0.19.1"
2121
fancy-regex = { version = "0.14.0", default-features = false, features = ["std"] }
22-
quote = "1.0.37"
23-
syn = { version = "2.0.90", features = ["full"] }
22+
quote = "1.0.38"
23+
syn = { version = "2.0.98", features = ["full"] }

libcnb-test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ libcnb-common.workspace = true
2121
libcnb-data.workspace = true
2222
libcnb-package.workspace = true
2323
regex = "1.11.1"
24-
tempfile = "3.14.0"
25-
thiserror = "2.0.6"
24+
tempfile = "3.17.1"
25+
thiserror = "2.0.11"
2626

2727
[dev-dependencies]
2828
indoc = "2.0.5"

libcnb/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ trace = [
2929
]
3030

3131
[dependencies]
32-
anyhow = { version = "1.0.94", optional = true }
32+
anyhow = { version = "1.0.96", optional = true }
3333
cyclonedx-bom = { version = "0.8.0", optional = true }
3434
libcnb-common.workspace = true
3535
libcnb-data.workspace = true
@@ -38,11 +38,11 @@ futures-core = { version = "0.3", optional = true }
3838
opentelemetry = { version = "0.28.0", optional = true, default-features = false }
3939
opentelemetry_sdk = { version = "0.28.0", optional = true, default-features = false }
4040
opentelemetry-proto = { version = "0.28.0", optional = true, default-features = false }
41-
serde = { version = "1.0.215", features = ["derive"] }
42-
serde_json = { version = "1.0.133", optional = true }
43-
thiserror = "2.0.6"
41+
serde = { version = "1.0.218", features = ["derive"] }
42+
serde_json = { version = "1.0.139", optional = true }
43+
thiserror = "2.0.11"
4444
toml.workspace = true
4545

4646
[dev-dependencies]
47-
tempfile = "3.14.0"
48-
serde_json = "1.0.133"
47+
tempfile = "3.17.1"
48+
serde_json = "1.0.139"

libherokubuildpack/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,25 +33,25 @@ command = ["write", "dep:crossbeam-utils"]
3333
write = []
3434

3535
[dependencies]
36-
crossbeam-utils = { version = "0.8.20", optional = true }
36+
crossbeam-utils = { version = "0.8.21", optional = true }
3737
# The default `miniz_oxide` flate2 backend has poor performance in debug/under QEMU:
3838
# https://github.com/rust-lang/flate2-rs/issues/297
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.0.35", default-features = false, features = ["zlib"], optional = true }
42+
flate2 = { version = "1.1.0", 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 }
46-
semver = { version = "1.0.23", features = ["serde"], optional = true }
47-
serde = { version = "1.0.215", features = ["derive"], optional = true }
46+
semver = { version = "1.0.25", features = ["serde"], optional = true }
47+
serde = { version = "1.0.218", features = ["derive"], optional = true }
4848
sha2 = { version = "0.10.8", optional = true }
49-
tar = { version = "0.4.43", default-features = false, optional = true }
49+
tar = { version = "0.4.44", default-features = false, optional = true }
5050
termcolor = { version = "1.4.1", optional = true }
51-
thiserror = { version = "2.0.6", optional = true }
51+
thiserror = { version = "2.0.11", optional = true }
5252
toml = { workspace = true, optional = true }
5353
ureq = { version = "2.12.1", default-features = false, features = ["tls"], optional = true }
5454

5555
[dev-dependencies]
5656
serde_test = "1.0.177"
57-
tempfile = "3.14.0"
57+
tempfile = "3.17.1"

0 commit comments

Comments
 (0)