Skip to content

Commit

Permalink
Prepare release v0.27.0 (#914)
Browse files Browse the repository at this point in the history
Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com>
  • Loading branch information
heroku-linguist[bot] authored Feb 27, 2025
1 parent 254cbae commit 0938dc5
Show file tree
Hide file tree
Showing 10 changed files with 39 additions and 35 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [0.27.0] - 2025-02-27

### Changed

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

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

[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.26.1...HEAD
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.27.0...HEAD
[0.27.0]: https://github.com/heroku/libcnb.rs/compare/v0.26.1...v0.27.0
[0.26.1]: https://github.com/heroku/libcnb.rs/compare/v0.26.0...v0.26.1
[0.26.0]: https://github.com/heroku/libcnb.rs/compare/v0.25.0...v0.26.0
[0.25.0]: https://github.com/heroku/libcnb.rs/compare/v0.24.0...v0.25.0
Expand Down
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ members = [
]

[workspace.package]
version = "0.26.1"
version = "0.27.0"
rust-version = "1.85"
edition = "2024"
license = "BSD-3-Clause"
Expand All @@ -37,10 +37,10 @@ unwrap_used = "warn"
missing_errors_doc = "allow"

[workspace.dependencies]
libcnb = { version = "=0.26.1", path = "libcnb" }
libcnb-common = { version = "=0.26.1", path = "libcnb-common" }
libcnb-data = { version = "=0.26.1", path = "libcnb-data" }
libcnb-package = { version = "=0.26.1", path = "libcnb-package" }
libcnb-proc-macros = { version = "=0.26.1", path = "libcnb-proc-macros" }
libcnb-test = { version = "=0.26.1", path = "libcnb-test" }
toml = { version = "0.8.19" }
libcnb = { version = "=0.27.0", path = "libcnb" }
libcnb-common = { version = "=0.27.0", path = "libcnb-common" }
libcnb-data = { version = "=0.27.0", path = "libcnb-data" }
libcnb-package = { version = "=0.27.0", path = "libcnb-package" }
libcnb-proc-macros = { version = "=0.27.0", path = "libcnb-proc-macros" }
libcnb-test = { version = "=0.27.0", path = "libcnb-test" }
toml = { version = "0.8.20" }
6 changes: 3 additions & 3 deletions libcnb-cargo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ path = "src/main.rs"
workspace = true

[dependencies]
clap = { version = "4.5.23", default-features = false, features = [
clap = { version = "4.5.31", default-features = false, features = [
"derive",
"error-context",
"help",
Expand All @@ -29,8 +29,8 @@ clap = { version = "4.5.23", default-features = false, features = [
libcnb-data.workspace = true
libcnb-package.workspace = true
pathdiff = "0.2.3"
thiserror = "2.0.6"
thiserror = "2.0.11"

[dev-dependencies]
libcnb-common.workspace = true
tempfile = "3.14.0"
tempfile = "3.17.1"
4 changes: 2 additions & 2 deletions libcnb-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ include = ["src/**/*", "LICENSE", "README.md"]
workspace = true

[dependencies]
serde = { version = "1.0.215", features = ["derive"] }
thiserror = "2.0.6"
serde = { version = "1.0.218", features = ["derive"] }
thiserror = "2.0.11"
toml.workspace = true
4 changes: 2 additions & 2 deletions libcnb-data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ workspace = true
[dependencies]
fancy-regex = { version = "0.14.0", default-features = false, features = ["std"] }
libcnb-proc-macros.workspace = true
serde = { version = "1.0.215", features = ["derive"] }
thiserror = "2.0.6"
serde = { version = "1.0.218", features = ["derive"] }
thiserror = "2.0.11"
toml.workspace = true
uriparse = "0.6.4"

Expand Down
4 changes: 2 additions & 2 deletions libcnb-package/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ indoc = "2.0.5"
libcnb-common.workspace = true
libcnb-data.workspace = true
petgraph = { version = "0.7.1", default-features = false }
thiserror = "2.0.6"
thiserror = "2.0.11"
uriparse = "0.6.4"
which = "7.0.0"
which = "7.0.2"
4 changes: 2 additions & 2 deletions libcnb-proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ workspace = true
[dependencies]
cargo_metadata = "0.19.1"
fancy-regex = { version = "0.14.0", default-features = false, features = ["std"] }
quote = "1.0.37"
syn = { version = "2.0.90", features = ["full"] }
quote = "1.0.38"
syn = { version = "2.0.98", features = ["full"] }
4 changes: 2 additions & 2 deletions libcnb-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ libcnb-common.workspace = true
libcnb-data.workspace = true
libcnb-package.workspace = true
regex = "1.11.1"
tempfile = "3.14.0"
thiserror = "2.0.6"
tempfile = "3.17.1"
thiserror = "2.0.11"

[dev-dependencies]
indoc = "2.0.5"
Expand Down
12 changes: 6 additions & 6 deletions libcnb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ trace = [
]

[dependencies]
anyhow = { version = "1.0.94", optional = true }
anyhow = { version = "1.0.96", optional = true }
cyclonedx-bom = { version = "0.8.0", optional = true }
libcnb-common.workspace = true
libcnb-data.workspace = true
Expand All @@ -38,11 +38,11 @@ futures-core = { version = "0.3", optional = true }
opentelemetry = { version = "0.28.0", optional = true, default-features = false }
opentelemetry_sdk = { version = "0.28.0", optional = true, default-features = false }
opentelemetry-proto = { version = "0.28.0", optional = true, default-features = false }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = { version = "1.0.133", optional = true }
thiserror = "2.0.6"
serde = { version = "1.0.218", features = ["derive"] }
serde_json = { version = "1.0.139", optional = true }
thiserror = "2.0.11"
toml.workspace = true

[dev-dependencies]
tempfile = "3.14.0"
serde_json = "1.0.133"
tempfile = "3.17.1"
serde_json = "1.0.139"
14 changes: 7 additions & 7 deletions libherokubuildpack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,25 @@ command = ["write", "dep:crossbeam-utils"]
write = []

[dependencies]
crossbeam-utils = { version = "0.8.20", optional = true }
crossbeam-utils = { version = "0.8.21", optional = true }
# The default `miniz_oxide` flate2 backend has poor performance in debug/under QEMU:
# https://github.com/rust-lang/flate2-rs/issues/297
# Ideally we'd use the fastest `zlib-ng` backend, however it fails to cross-compile:
# https://github.com/rust-lang/libz-sys/issues/93
# As such we have to use the next best alternate backend, which is `zlib`.
flate2 = { version = "1.0.35", default-features = false, features = ["zlib"], optional = true }
flate2 = { version = "1.1.0", default-features = false, features = ["zlib"], optional = true }
hex = { version = "0.4.3", optional = true }
libcnb = { workspace = true, optional = true }
pathdiff = { version = "0.2.3", optional = true }
semver = { version = "1.0.23", features = ["serde"], optional = true }
serde = { version = "1.0.215", features = ["derive"], optional = true }
semver = { version = "1.0.25", features = ["serde"], optional = true }
serde = { version = "1.0.218", features = ["derive"], optional = true }
sha2 = { version = "0.10.8", optional = true }
tar = { version = "0.4.43", default-features = false, optional = true }
tar = { version = "0.4.44", default-features = false, optional = true }
termcolor = { version = "1.4.1", optional = true }
thiserror = { version = "2.0.6", optional = true }
thiserror = { version = "2.0.11", optional = true }
toml = { workspace = true, optional = true }
ureq = { version = "2.12.1", default-features = false, features = ["tls"], optional = true }

[dev-dependencies]
serde_test = "1.0.177"
tempfile = "3.14.0"
tempfile = "3.17.1"

0 comments on commit 0938dc5

Please sign in to comment.