From 6c01e85fdc6e5d7c71976dc79c902a323db3d380 Mon Sep 17 00:00:00 2001 From: "heroku-linguist[bot]" <136119646+heroku-linguist[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 12:45:04 -0400 Subject: [PATCH] Prepare release v0.25.0 (#873) Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com> --- CHANGELOG.md | 6 +++++- Cargo.toml | 14 +++++++------- libcnb-cargo/Cargo.toml | 2 +- libcnb-common/Cargo.toml | 4 ++-- libcnb-data/Cargo.toml | 4 ++-- libcnb-package/Cargo.toml | 2 +- libcnb-proc-macros/Cargo.toml | 2 +- libcnb-test/Cargo.toml | 2 +- libcnb/Cargo.toml | 8 ++++---- libherokubuildpack/Cargo.toml | 4 ++-- 10 files changed, 26 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c008a107..4b543df2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.25.0] - 2024-10-23 + ### Added - `libcnb-test`: @@ -331,7 +334,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.24.0...HEAD +[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.25.0...HEAD +[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 [0.22.0]: https://github.com/heroku/libcnb.rs/compare/v0.21.0...v0.22.0 diff --git a/Cargo.toml b/Cargo.toml index aaaa01d2..8936d47f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ members = [ ] [workspace.package] -version = "0.24.0" +version = "0.25.0" rust-version = "1.76" edition = "2021" license = "BSD-3-Clause" @@ -39,10 +39,10 @@ missing_errors_doc = "allow" module_name_repetitions = "allow" [workspace.dependencies] -libcnb = { version = "=0.24.0", path = "libcnb" } -libcnb-common = { version = "=0.24.0", path = "libcnb-common" } -libcnb-data = { version = "=0.24.0", path = "libcnb-data" } -libcnb-package = { version = "=0.24.0", path = "libcnb-package" } -libcnb-proc-macros = { version = "=0.24.0", path = "libcnb-proc-macros" } -libcnb-test = { version = "=0.24.0", path = "libcnb-test" } +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" } toml = { version = "0.8.19" } diff --git a/libcnb-cargo/Cargo.toml b/libcnb-cargo/Cargo.toml index 9f24acf7..a01fc75d 100644 --- a/libcnb-cargo/Cargo.toml +++ b/libcnb-cargo/Cargo.toml @@ -29,7 +29,7 @@ clap = { version = "4.5.20", default-features = false, features = [ libcnb-data.workspace = true libcnb-package.workspace = true pathdiff = "0.2.2" -thiserror = "1.0.64" +thiserror = "1.0.65" [dev-dependencies] libcnb-common.workspace = true diff --git a/libcnb-common/Cargo.toml b/libcnb-common/Cargo.toml index c3112317..9d55c95b 100644 --- a/libcnb-common/Cargo.toml +++ b/libcnb-common/Cargo.toml @@ -14,6 +14,6 @@ include = ["src/**/*", "LICENSE", "README.md"] workspace = true [dependencies] -serde = { version = "1.0.210", features = ["derive"] } -thiserror = "1.0.64" +serde = { version = "1.0.213", features = ["derive"] } +thiserror = "1.0.65" toml.workspace = true diff --git a/libcnb-data/Cargo.toml b/libcnb-data/Cargo.toml index cbdf2e76..bb5a4115 100644 --- a/libcnb-data/Cargo.toml +++ b/libcnb-data/Cargo.toml @@ -17,8 +17,8 @@ workspace = true [dependencies] fancy-regex = { version = "0.13.0", default-features = false, features = ["std"] } libcnb-proc-macros.workspace = true -serde = { version = "1.0.210", features = ["derive"] } -thiserror = "1.0.64" +serde = { version = "1.0.213", features = ["derive"] } +thiserror = "1.0.65" toml.workspace = true uriparse = "0.6.4" diff --git a/libcnb-package/Cargo.toml b/libcnb-package/Cargo.toml index 47f1b7e4..0a76d12d 100644 --- a/libcnb-package/Cargo.toml +++ b/libcnb-package/Cargo.toml @@ -21,6 +21,6 @@ indoc = "2.0.5" libcnb-common.workspace = true libcnb-data.workspace = true petgraph = { version = "0.6.5", default-features = false } -thiserror = "1.0.64" +thiserror = "1.0.65" uriparse = "0.6.4" which = "6.0.3" diff --git a/libcnb-proc-macros/Cargo.toml b/libcnb-proc-macros/Cargo.toml index 109a01a1..6154f3c2 100644 --- a/libcnb-proc-macros/Cargo.toml +++ b/libcnb-proc-macros/Cargo.toml @@ -20,4 +20,4 @@ workspace = true cargo_metadata = "0.18.1" fancy-regex = { version = "0.13.0", default-features = false, features = ["std"] } quote = "1.0.37" -syn = { version = "2.0.79", features = ["full"] } +syn = { version = "2.0.82", features = ["full"] } diff --git a/libcnb-test/Cargo.toml b/libcnb-test/Cargo.toml index 5e446586..03dfe138 100644 --- a/libcnb-test/Cargo.toml +++ b/libcnb-test/Cargo.toml @@ -22,7 +22,7 @@ libcnb-data.workspace = true libcnb-package.workspace = true regex = "1.11.0" tempfile = "3.13.0" -thiserror = "1.0.64" +thiserror = "1.0.65" [dev-dependencies] indoc = "2.0.5" diff --git a/libcnb/Cargo.toml b/libcnb/Cargo.toml index 4fa59bf3..affe3c26 100644 --- a/libcnb/Cargo.toml +++ b/libcnb/Cargo.toml @@ -18,7 +18,7 @@ workspace = true trace = ["dep:opentelemetry", "dep:opentelemetry_sdk", "dep:opentelemetry-stdout"] [dependencies] -anyhow = { version = "1.0.89", optional = true } +anyhow = { version = "1.0.91", optional = true } cyclonedx-bom = { version = "0.7.0", optional = true } libcnb-common.workspace = true libcnb-data.workspace = true @@ -26,10 +26,10 @@ 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.210", features = ["derive"] } -thiserror = "1.0.64" +serde = { version = "1.0.213", features = ["derive"] } +thiserror = "1.0.65" toml.workspace = true [dev-dependencies] -serde_json = "1.0.128" +serde_json = "1.0.132" tempfile = "3.13.0" diff --git a/libherokubuildpack/Cargo.toml b/libherokubuildpack/Cargo.toml index 6a43e465..0acc7601 100644 --- a/libherokubuildpack/Cargo.toml +++ b/libherokubuildpack/Cargo.toml @@ -45,11 +45,11 @@ 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.210", features = ["derive"], optional = true } +serde = { version = "1.0.213", features = ["derive"], optional = true } sha2 = { version = "0.10.8", optional = true } tar = { version = "0.4.42", default-features = false, optional = true } termcolor = { version = "1.4.1", optional = true } -thiserror = { version = "1.0.64", optional = true } +thiserror = { version = "1.0.65", optional = true } toml = { workspace = true, optional = true } ureq = { version = "2.10.1", default-features = false, features = ["tls"], optional = true }