From b538cd333df504da6a339244c271cae3d3bb29be Mon Sep 17 00:00:00 2001 From: "heroku-linguist[bot]" <136119646+heroku-linguist[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 16:47:20 +0000 Subject: [PATCH] Prepare release v0.19.0 (#793) * Prepare release v0.19.0 * Fix code highlighting in changelog entry --------- Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com> Co-authored-by: Josh W Lewis --- CHANGELOG.md | 8 ++++++-- Cargo.toml | 14 +++++++------- libcnb-cargo/Cargo.toml | 2 +- libcnb-common/Cargo.toml | 2 +- libcnb-data/Cargo.toml | 2 +- libcnb-proc-macros/Cargo.toml | 2 +- libcnb-test/Cargo.toml | 2 +- libcnb/Cargo.toml | 6 +++--- libherokubuildpack/Cargo.toml | 2 +- 9 files changed, 22 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38cc743b..962a775e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.19.0] - 2024-02-23 + ### Added -- `libcnb-data': +- `libcnb-data`: - Reintroduced support for deserializing `[[stacks]]` in `buildpack.toml`. ([#789](https://github.com/heroku/libcnb.rs/pull/789)) - `libherokubuildpack`: @@ -262,7 +265,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.18.0...HEAD +[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.19.0...HEAD +[0.19.0]: https://github.com/heroku/libcnb.rs/compare/v0.18.0...v0.19.0 [0.18.0]: https://github.com/heroku/libcnb.rs/compare/v0.17.0...v0.18.0 [0.17.0]: https://github.com/heroku/libcnb.rs/compare/v0.16.0...v0.17.0 [0.16.0]: https://github.com/heroku/libcnb.rs/compare/v0.15.0...v0.16.0 diff --git a/Cargo.toml b/Cargo.toml index c3d0eb11..a56220cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ members = [ ] [workspace.package] -version = "0.18.0" +version = "0.19.0" rust-version = "1.76" edition = "2021" license = "BSD-3-Clause" @@ -38,10 +38,10 @@ missing_errors_doc = "allow" module_name_repetitions = "allow" [workspace.dependencies] -libcnb = { version = "=0.18.0", path = "libcnb" } -libcnb-common = { version = "=0.18.0", path = "libcnb-common" } -libcnb-data = { version = "=0.18.0", path = "libcnb-data" } -libcnb-package = { version = "=0.18.0", path = "libcnb-package" } -libcnb-proc-macros = { version = "=0.18.0", path = "libcnb-proc-macros" } -libcnb-test = { version = "=0.18.0", path = "libcnb-test" } +libcnb = { version = "=0.19.0", path = "libcnb" } +libcnb-common = { version = "=0.19.0", path = "libcnb-common" } +libcnb-data = { version = "=0.19.0", path = "libcnb-data" } +libcnb-package = { version = "=0.19.0", path = "libcnb-package" } +libcnb-proc-macros = { version = "=0.19.0", path = "libcnb-proc-macros" } +libcnb-test = { version = "=0.19.0", path = "libcnb-test" } toml = { version = "0.8.10" } diff --git a/libcnb-cargo/Cargo.toml b/libcnb-cargo/Cargo.toml index b1aaeff2..611a6ef2 100644 --- a/libcnb-cargo/Cargo.toml +++ b/libcnb-cargo/Cargo.toml @@ -19,7 +19,7 @@ path = "src/main.rs" workspace = true [dependencies] -clap = { version = "4.5.0", default-features = false, features = [ +clap = { version = "4.5.1", default-features = false, features = [ "derive", "error-context", "help", diff --git a/libcnb-common/Cargo.toml b/libcnb-common/Cargo.toml index fae9dd79..dd5f4949 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.196", features = ["derive"] } +serde = { version = "1.0.197", features = ["derive"] } thiserror = "1.0.57" toml.workspace = true diff --git a/libcnb-data/Cargo.toml b/libcnb-data/Cargo.toml index 08749aa7..2f90528a 100644 --- a/libcnb-data/Cargo.toml +++ b/libcnb-data/Cargo.toml @@ -17,7 +17,7 @@ workspace = true [dependencies] fancy-regex = { version = "0.13.0", default-features = false, features = ["std"] } libcnb-proc-macros.workspace = true -serde = { version = "1.0.196", features = ["derive"] } +serde = { version = "1.0.197", features = ["derive"] } thiserror = "1.0.57" toml.workspace = true uriparse = "0.6.4" diff --git a/libcnb-proc-macros/Cargo.toml b/libcnb-proc-macros/Cargo.toml index 50cb61f8..2e29d588 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.35" -syn = { version = "2.0.48", features = ["full"] } +syn = { version = "2.0.50", features = ["full"] } diff --git a/libcnb-test/Cargo.toml b/libcnb-test/Cargo.toml index 6e65b2a4..f2ceea32 100644 --- a/libcnb-test/Cargo.toml +++ b/libcnb-test/Cargo.toml @@ -25,5 +25,5 @@ thiserror = "1.0.57" [dev-dependencies] indoc = "2.0.4" -ureq = { version = "2.9.5", default-features = false } +ureq = { version = "2.9.6", default-features = false } libcnb.workspace = true diff --git a/libcnb/Cargo.toml b/libcnb/Cargo.toml index f672fad4..053afe86 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.79", optional = true } +anyhow = { version = "1.0.80", optional = true } cyclonedx-bom = { version = "0.5.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.196", features = ["derive"] } +serde = { version = "1.0.197", features = ["derive"] } thiserror = "1.0.57" toml.workspace = true [dev-dependencies] tempfile = "3.10.0" -serde_json = "1.0.113" +serde_json = "1.0.114" diff --git a/libherokubuildpack/Cargo.toml b/libherokubuildpack/Cargo.toml index 6056fb52..f178aae2 100644 --- a/libherokubuildpack/Cargo.toml +++ b/libherokubuildpack/Cargo.toml @@ -45,7 +45,7 @@ tar = { version = "0.4.40", default-features = false, optional = true } termcolor = { version = "1.4.1", optional = true } thiserror = { version = "1.0.57", optional = true } toml = { workspace = true, optional = true } -ureq = { version = "2.9.5", default-features = false, features = ["tls"], optional = true } +ureq = { version = "2.9.6", default-features = false, features = ["tls"], optional = true } [dev-dependencies] indoc = "2.0.4"