From 77617e438302dd8b0c2b2e9b4a94ffba793b9e9c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 28 Feb 2024 02:07:20 +0000 Subject: [PATCH 1/2] fix(deps): update rust crate rayon to >=1.9.0 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 00fb030..5757971 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -575,9 +575,9 @@ dependencies = [ [[package]] name = "rayon" -version = "1.8.1" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051" +checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd" dependencies = [ "either", "rayon-core", diff --git a/Cargo.toml b/Cargo.toml index 48cb6bd..eeda29b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ required-features = ["image"] image = { version = "0.24", optional = true } serde = { version = "1", features = ["derive"], optional = true } # transitive dependencies -rayon = { version = ">=1.1", optional = true } +rayon = { version = ">=1.9.0", optional = true } cfg-if = { version = ">=0.1.2", optional = true } [features] From f6e8a3c7703a2f40d9165db2cc07fcd9e85acd59 Mon Sep 17 00:00:00 2001 From: Anas Elgarhy Date: Mon, 11 Mar 2024 03:27:32 +0200 Subject: [PATCH 2/2] ci(release): configure release plz --- .release-plz.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .release-plz.toml diff --git a/.release-plz.toml b/.release-plz.toml new file mode 100644 index 0000000..6f92ab1 --- /dev/null +++ b/.release-plz.toml @@ -0,0 +1,12 @@ +[workspace] +allow_dirty = true # allow updating repositories with uncommitted changes +changelog_config = "cliff.toml" +# dependencies_update = true # update dependencies with `cargo update` +pr_labels = ["release"] # add the `release` label to the release Pull Request +publish_allow_dirty = true # add `--allow-dirty` to `cargo publish` +semver_check = false # disable API breaking changes checks +publish_timeout = "10m" # set a timeout for `cargo publish` +# release_commits = "^feat:" # prepare release only if at least one commit matches a regex + +[changelog] +protect_breaking_commits = true # always include commits with breaking changes in the changelog