From f959dd1b7b9f52ab408065510792304776b4f707 Mon Sep 17 00:00:00 2001 From: "heroku-linguist[bot]" <136119646+heroku-linguist[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 15:02:49 +0100 Subject: [PATCH] Prepare release v0.18.0 (#777) Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com> --- CHANGELOG.md | 6 +++++- Cargo.toml | 16 ++++++++-------- libcnb-cargo/Cargo.toml | 6 +++--- libcnb-common/Cargo.toml | 4 ++-- libcnb-data/Cargo.toml | 4 ++-- libcnb-package/Cargo.toml | 2 +- libcnb-proc-macros/Cargo.toml | 4 ++-- libcnb-test/Cargo.toml | 6 +++--- libcnb/Cargo.toml | 12 ++++++------ libherokubuildpack/Cargo.toml | 10 +++++----- 10 files changed, 37 insertions(+), 33 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bcb0f09e..a2bd0385 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.18.0] - 2024-02-12 + ### Changed - Now targets [Buildpack API 0.10](https://github.com/buildpacks/spec/releases/tag/buildpack%2Fv0.10). Buildpacks need to upgrade the `api` key to `0.10` in their `buildpack.toml`. ([#773](https://github.com/heroku/libcnb.rs/pull/773)) @@ -252,7 +255,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.17.0...HEAD +[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.18.0...HEAD +[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 [0.15.0]: https://github.com/heroku/libcnb.rs/compare/v0.14.0...v0.15.0 diff --git a/Cargo.toml b/Cargo.toml index 84327113..c3d0eb11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ members = [ ] [workspace.package] -version = "0.17.0" +version = "0.18.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.17.0", path = "libcnb" } -libcnb-common = { version = "=0.17.0", path = "libcnb-common" } -libcnb-data = { version = "=0.17.0", path = "libcnb-data" } -libcnb-package = { version = "=0.17.0", path = "libcnb-package" } -libcnb-proc-macros = { version = "=0.17.0", path = "libcnb-proc-macros" } -libcnb-test = { version = "=0.17.0", path = "libcnb-test" } -toml = { version = "0.8.8" } +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" } +toml = { version = "0.8.10" } diff --git a/libcnb-cargo/Cargo.toml b/libcnb-cargo/Cargo.toml index d5a3e251..b1aaeff2 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.4.11", default-features = false, features = [ +clap = { version = "4.5.0", default-features = false, features = [ "derive", "error-context", "help", @@ -29,8 +29,8 @@ clap = { version = "4.4.11", default-features = false, features = [ libcnb-data.workspace = true libcnb-package.workspace = true pathdiff = "0.2.1" -thiserror = "1.0.50" +thiserror = "1.0.57" [dev-dependencies] -tempfile = "3.8.1" +tempfile = "3.10.0" libcnb-common.workspace = true diff --git a/libcnb-common/Cargo.toml b/libcnb-common/Cargo.toml index 6d65e8f7..fae9dd79 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.193", features = ["derive"] } -thiserror = "1.0.50" +serde = { version = "1.0.196", features = ["derive"] } +thiserror = "1.0.57" toml.workspace = true diff --git a/libcnb-data/Cargo.toml b/libcnb-data/Cargo.toml index a3bf7254..08749aa7 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.193", features = ["derive"] } -thiserror = "1.0.50" +serde = { version = "1.0.196", features = ["derive"] } +thiserror = "1.0.57" toml.workspace = true uriparse = "0.6.4" diff --git a/libcnb-package/Cargo.toml b/libcnb-package/Cargo.toml index 9590548f..a18e6a28 100644 --- a/libcnb-package/Cargo.toml +++ b/libcnb-package/Cargo.toml @@ -21,6 +21,6 @@ indoc = "2.0.4" libcnb-common.workspace = true libcnb-data.workspace = true petgraph = { version = "0.6.4", default-features = false } -thiserror = "1.0.50" +thiserror = "1.0.57" uriparse = "0.6.4" which = "6.0.0" diff --git a/libcnb-proc-macros/Cargo.toml b/libcnb-proc-macros/Cargo.toml index 913e2a41..50cb61f8 100644 --- a/libcnb-proc-macros/Cargo.toml +++ b/libcnb-proc-macros/Cargo.toml @@ -19,5 +19,5 @@ workspace = true [dependencies] cargo_metadata = "0.18.1" fancy-regex = { version = "0.13.0", default-features = false, features = ["std"] } -quote = "1.0.33" -syn = { version = "2.0.39", features = ["full"] } +quote = "1.0.35" +syn = { version = "2.0.48", features = ["full"] } diff --git a/libcnb-test/Cargo.toml b/libcnb-test/Cargo.toml index 4fa11476..6e65b2a4 100644 --- a/libcnb-test/Cargo.toml +++ b/libcnb-test/Cargo.toml @@ -20,10 +20,10 @@ fs_extra = "1.3.0" libcnb-common.workspace = true libcnb-data.workspace = true libcnb-package.workspace = true -tempfile = "3.8.1" -thiserror = "1.0.50" +tempfile = "3.10.0" +thiserror = "1.0.57" [dev-dependencies] indoc = "2.0.4" -ureq = { version = "2.9.1", default-features = false } +ureq = { version = "2.9.5", default-features = false } libcnb.workspace = true diff --git a/libcnb/Cargo.toml b/libcnb/Cargo.toml index d92d20ce..a6e48006 100644 --- a/libcnb/Cargo.toml +++ b/libcnb/Cargo.toml @@ -18,19 +18,19 @@ workspace = true trace = ["dep:opentelemetry", "dep:opentelemetry_sdk", "dep:opentelemetry-stdout"] [dependencies] -anyhow = { version = "1.0.75", optional = true } +anyhow = { version = "1.0.79", optional = true } cyclonedx-bom = { version = "0.4.3", 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.1", optional = true } +opentelemetry_sdk = { version = "0.21.2", optional = true } opentelemetry-stdout = { version = "0.2.0", optional = true, features = ["trace"] } -serde = { version = "1.0.193", features = ["derive"] } -thiserror = "1.0.50" +serde = { version = "1.0.196", features = ["derive"] } +thiserror = "1.0.57" toml.workspace = true [dev-dependencies] fastrand = "2.0.1" -tempfile = "3.8.1" -serde_json = "1.0.108" +tempfile = "3.10.0" +serde_json = "1.0.113" diff --git a/libherokubuildpack/Cargo.toml b/libherokubuildpack/Cargo.toml index 90e5a372..bc7f6a25 100644 --- a/libherokubuildpack/Cargo.toml +++ b/libherokubuildpack/Cargo.toml @@ -30,7 +30,7 @@ command = ["write", "dep:crossbeam-utils"] write = [] [dependencies] -crossbeam-utils = { version = "0.8.16", optional = true } +crossbeam-utils = { version = "0.8.19", 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: @@ -41,10 +41,10 @@ libcnb = { workspace = true, optional = true } pathdiff = { version = "0.2.1", optional = true } sha2 = { version = "0.10.8", optional = true } tar = { version = "0.4.40", default-features = false, optional = true } -termcolor = { version = "1.4.0", optional = true } -thiserror = { version = "1.0.50", 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.1", default-features = false, features = ["tls"], optional = true } +ureq = { version = "2.9.5", default-features = false, features = ["tls"], optional = true } [dev-dependencies] -tempfile = "3.8.1" +tempfile = "3.10.0"