Skip to content

Commit

Permalink
Prepare release v0.26.0 (#878)
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 Nov 18, 2024
1 parent 06ef0d1 commit 5f9f5dd
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 25 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.26.0] - 2024-11-18

### Changed

- `libherokubuildpack`:
Expand Down Expand Up @@ -338,7 +341,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.25.0...HEAD
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.26.0...HEAD
[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
[0.24.0]: https://github.com/heroku/libcnb.rs/compare/v0.23.0...v0.24.0
[0.23.0]: https://github.com/heroku/libcnb.rs/compare/v0.22.0...v0.23.0
Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ members = [
]

[workspace.package]
version = "0.25.0"
version = "0.26.0"
rust-version = "1.76"
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -39,10 +39,10 @@ missing_errors_doc = "allow"
module_name_repetitions = "allow"

[workspace.dependencies]
libcnb = { version = "=0.25.0", path = "libcnb" }
libcnb-common = { version = "=0.25.0", path = "libcnb-common" }
libcnb-data = { version = "=0.25.0", path = "libcnb-data" }
libcnb-package = { version = "=0.25.0", path = "libcnb-package" }
libcnb-proc-macros = { version = "=0.25.0", path = "libcnb-proc-macros" }
libcnb-test = { version = "=0.25.0", path = "libcnb-test" }
libcnb = { version = "=0.26.0", path = "libcnb" }
libcnb-common = { version = "=0.26.0", path = "libcnb-common" }
libcnb-data = { version = "=0.26.0", path = "libcnb-data" }
libcnb-package = { version = "=0.26.0", path = "libcnb-package" }
libcnb-proc-macros = { version = "=0.26.0", path = "libcnb-proc-macros" }
libcnb-test = { version = "=0.26.0", path = "libcnb-test" }
toml = { version = "0.8.19" }
2 changes: 1 addition & 1 deletion examples/execd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ rust-version.workspace = true
workspace = true

[dependencies]
fastrand = "2.1.1"
fastrand = "2.2.0"
libcnb.workspace = true

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 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.20", default-features = false, features = [
clap = { version = "4.5.21", default-features = false, features = [
"derive",
"error-context",
"help",
Expand All @@ -33,4 +33,4 @@ thiserror = "2.0.3"

[dev-dependencies]
libcnb-common.workspace = true
tempfile = "3.13.0"
tempfile = "3.14.0"
2 changes: 1 addition & 1 deletion 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.213", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
thiserror = "2.0.3"
toml.workspace = true
2 changes: 1 addition & 1 deletion libcnb-data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ workspace = true
[dependencies]
fancy-regex = { version = "0.14.0", default-features = false, features = ["std"] }
libcnb-proc-macros.workspace = true
serde = { version = "1.0.213", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
thiserror = "2.0.3"
toml.workspace = true
uriparse = "0.6.4"
Expand Down
2 changes: 1 addition & 1 deletion libcnb-proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ workspace = true
cargo_metadata = "0.18.1"
fancy-regex = { version = "0.14.0", default-features = false, features = ["std"] }
quote = "1.0.37"
syn = { version = "2.0.82", features = ["full"] }
syn = { version = "2.0.87", features = ["full"] }
6 changes: 3 additions & 3 deletions libcnb-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ include = ["src/**/*", "LICENSE", "README.md"]
workspace = true

[dependencies]
fastrand = "2.1.1"
fastrand = "2.2.0"
fs_extra = "1.3.0"
libcnb-common.workspace = true
libcnb-data.workspace = true
libcnb-package.workspace = true
regex = "1.11.0"
tempfile = "3.13.0"
regex = "1.11.1"
tempfile = "3.14.0"
thiserror = "2.0.3"

[dev-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions libcnb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ workspace = true
trace = ["dep:opentelemetry", "dep:opentelemetry_sdk", "dep:opentelemetry-stdout"]

[dependencies]
anyhow = { version = "1.0.91", optional = true }
anyhow = { version = "1.0.93", optional = true }
cyclonedx-bom = { version = "0.8.0", optional = true }
libcnb-common.workspace = true
libcnb-data.workspace = true
libcnb-proc-macros.workspace = true
opentelemetry = { version = "0.21.0", optional = true }
opentelemetry_sdk = { version = "0.21.2", optional = true }
opentelemetry-stdout = { version = "0.2.0", optional = true, features = ["trace"] }
serde = { version = "1.0.213", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
thiserror = "2.0.3"
toml.workspace = true

[dev-dependencies]
serde_json = "1.0.132"
tempfile = "3.13.0"
serde_json = "1.0.133"
tempfile = "3.14.0"
8 changes: 4 additions & 4 deletions libherokubuildpack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ crossbeam-utils = { version = "0.8.20", optional = true }
# 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.34", default-features = false, features = ["zlib"], optional = true }
flate2 = { version = "1.0.35", default-features = false, features = ["zlib"], optional = true }
hex = { version = "0.4.3", optional = true }
libcnb = { workspace = true, optional = true }
pathdiff = { version = "0.2.2", optional = true }
semver = { version = "1.0.23", features = ["serde"], optional = true }
serde = { version = "1.0.213", features = ["derive"], optional = true }
serde = { version = "1.0.215", features = ["derive"], optional = true }
sha2 = { version = "0.10.8", optional = true }
tar = { version = "0.4.42", default-features = false, optional = true }
tar = { version = "0.4.43", default-features = false, optional = true }
termcolor = { version = "1.4.1", optional = true }
thiserror = { version = "2.0.3", optional = true }
toml = { workspace = true, optional = true }
ureq = { version = "2.10.1", default-features = false, features = ["tls"], optional = true }

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

0 comments on commit 5f9f5dd

Please sign in to comment.