From 8d4d3f65eccc23622914baf34c58fad583e82b28 Mon Sep 17 00:00:00 2001 From: "heroku-linguist[bot]" <136119646+heroku-linguist[bot]@users.noreply.github.com> Date: Wed, 28 Aug 2024 07:42:52 +0000 Subject: [PATCH] Prepare release v0.23.0 (#857) Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com> --- CHANGELOG.md | 6 +++++- Cargo.toml | 16 ++++++++-------- examples/execd/Cargo.toml | 2 +- libcnb-cargo/Cargo.toml | 6 +++--- libcnb-common/Cargo.toml | 4 ++-- libcnb-data/Cargo.toml | 6 +++--- libcnb-package/Cargo.toml | 4 ++-- libcnb-proc-macros/Cargo.toml | 4 ++-- libcnb-test/Cargo.toml | 10 +++++----- libcnb/Cargo.toml | 8 ++++---- libherokubuildpack/Cargo.toml | 8 ++++---- 11 files changed, 39 insertions(+), 35 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f54d70d..7758ed50 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.23.0] - 2024-08-28 + ### Changed - `libcnb-test`: @@ -317,7 +320,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.22.0...HEAD +[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.23.0...HEAD +[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 [0.21.0]: https://github.com/heroku/libcnb.rs/compare/v0.20.0...v0.21.0 [0.20.0]: https://github.com/heroku/libcnb.rs/compare/v0.19.0...v0.20.0 diff --git a/Cargo.toml b/Cargo.toml index 949ef4ab..d179b7a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ members = [ ] [workspace.package] -version = "0.22.0" +version = "0.23.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.22.0", path = "libcnb" } -libcnb-common = { version = "=0.22.0", path = "libcnb-common" } -libcnb-data = { version = "=0.22.0", path = "libcnb-data" } -libcnb-package = { version = "=0.22.0", path = "libcnb-package" } -libcnb-proc-macros = { version = "=0.22.0", path = "libcnb-proc-macros" } -libcnb-test = { version = "=0.22.0", path = "libcnb-test" } -toml = { version = "0.8.14" } +libcnb = { version = "=0.23.0", path = "libcnb" } +libcnb-common = { version = "=0.23.0", path = "libcnb-common" } +libcnb-data = { version = "=0.23.0", path = "libcnb-data" } +libcnb-package = { version = "=0.23.0", path = "libcnb-package" } +libcnb-proc-macros = { version = "=0.23.0", path = "libcnb-proc-macros" } +libcnb-test = { version = "=0.23.0", path = "libcnb-test" } +toml = { version = "0.8.19" } diff --git a/examples/execd/Cargo.toml b/examples/execd/Cargo.toml index ef891a69..37a0311c 100644 --- a/examples/execd/Cargo.toml +++ b/examples/execd/Cargo.toml @@ -7,7 +7,7 @@ rust-version.workspace = true workspace = true [dependencies] -fastrand = "2.1.0" +fastrand = "2.1.1" libcnb.workspace = true [dev-dependencies] diff --git a/libcnb-cargo/Cargo.toml b/libcnb-cargo/Cargo.toml index be3b9ac4..9b6c8d5e 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.7", default-features = false, features = [ +clap = { version = "4.5.16", default-features = false, features = [ "derive", "error-context", "help", @@ -29,8 +29,8 @@ clap = { version = "4.5.7", default-features = false, features = [ libcnb-data.workspace = true libcnb-package.workspace = true pathdiff = "0.2.1" -thiserror = "1.0.61" +thiserror = "1.0.63" [dev-dependencies] libcnb-common.workspace = true -tempfile = "3.10.1" +tempfile = "3.12.0" diff --git a/libcnb-common/Cargo.toml b/libcnb-common/Cargo.toml index 04ccac67..71c2d894 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.203", features = ["derive"] } -thiserror = "1.0.61" +serde = { version = "1.0.209", features = ["derive"] } +thiserror = "1.0.63" toml.workspace = true diff --git a/libcnb-data/Cargo.toml b/libcnb-data/Cargo.toml index 60983b96..ef819a5f 100644 --- a/libcnb-data/Cargo.toml +++ b/libcnb-data/Cargo.toml @@ -17,10 +17,10 @@ workspace = true [dependencies] fancy-regex = { version = "0.13.0", default-features = false, features = ["std"] } libcnb-proc-macros.workspace = true -serde = { version = "1.0.203", features = ["derive"] } -thiserror = "1.0.61" +serde = { version = "1.0.209", features = ["derive"] } +thiserror = "1.0.63" toml.workspace = true uriparse = "0.6.4" [dev-dependencies] -serde_test = "1.0.176" +serde_test = "1.0.177" diff --git a/libcnb-package/Cargo.toml b/libcnb-package/Cargo.toml index f65116d2..30e60038 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.61" +thiserror = "1.0.63" uriparse = "0.6.4" -which = "6.0.1" +which = "6.0.3" diff --git a/libcnb-proc-macros/Cargo.toml b/libcnb-proc-macros/Cargo.toml index 55ba0c39..64a6560d 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.36" -syn = { version = "2.0.66", features = ["full"] } +quote = "1.0.37" +syn = { version = "2.0.76", features = ["full"] } diff --git a/libcnb-test/Cargo.toml b/libcnb-test/Cargo.toml index a3526981..996ccf06 100644 --- a/libcnb-test/Cargo.toml +++ b/libcnb-test/Cargo.toml @@ -15,16 +15,16 @@ include = ["src/**/*", "LICENSE", "README.md"] workspace = true [dependencies] -fastrand = "2.1.0" +fastrand = "2.1.1" fs_extra = "1.3.0" libcnb-common.workspace = true libcnb-data.workspace = true libcnb-package.workspace = true -regex = "1.10.5" -tempfile = "3.10.1" -thiserror = "1.0.61" +regex = "1.10.6" +tempfile = "3.12.0" +thiserror = "1.0.63" [dev-dependencies] indoc = "2.0.5" libcnb.workspace = true -ureq = { version = "2.9.7", default-features = false } +ureq = { version = "2.10.1", default-features = false } diff --git a/libcnb/Cargo.toml b/libcnb/Cargo.toml index 4bb22019..2667c949 100644 --- a/libcnb/Cargo.toml +++ b/libcnb/Cargo.toml @@ -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.203", features = ["derive"] } -thiserror = "1.0.61" +serde = { version = "1.0.209", features = ["derive"] } +thiserror = "1.0.63" toml.workspace = true [dev-dependencies] -serde_json = "1.0.117" -tempfile = "3.10.1" +serde_json = "1.0.127" +tempfile = "3.12.0" diff --git a/libherokubuildpack/Cargo.toml b/libherokubuildpack/Cargo.toml index 96798f70..abdea519 100644 --- a/libherokubuildpack/Cargo.toml +++ b/libherokubuildpack/Cargo.toml @@ -37,17 +37,17 @@ 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.30", default-features = false, features = ["zlib"], optional = true } +flate2 = { version = "1.0.33", default-features = false, features = ["zlib"], optional = true } libcnb = { workspace = true, optional = true } pathdiff = { version = "0.2.1", optional = true } sha2 = { version = "0.10.8", optional = true } tar = { version = "0.4.41", default-features = false, optional = true } termcolor = { version = "1.4.1", optional = true } -thiserror = { version = "1.0.61", optional = true } +thiserror = { version = "1.0.63", optional = true } toml = { workspace = true, optional = true } -ureq = { version = "2.9.7", default-features = false, features = ["tls"], optional = true } +ureq = { version = "2.10.1", default-features = false, features = ["tls"], optional = true } [dev-dependencies] indoc = "2.0.5" libcnb-test = { workspace = true } -tempfile = "3.10.1" +tempfile = "3.12.0"