From bdd73b38c9f47994d7b0edd5fd49aca49fd7bfcb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 15:01:41 +0000 Subject: [PATCH 1/2] Update Rust crate regex to 1.11.1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 767795c..bcdd49e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ cargo_toml = "0.20.0" diff = "0.1" glob = "0.3" prettyplease = "0.2" -regex = "1.10.3" +regex = "1.11.1" serde = { version = "1.0.197", features = ["derive"] } syn = { version = "2", features = ["full"] } thiserror = "1.0.58" From a2d29dee891984ee396402e898d4ed72bcb2ae58 Mon Sep 17 00:00:00 2001 From: Vincent Esche Date: Fri, 1 Nov 2024 16:07:14 +0100 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29e03f0..3559998 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,8 @@ Please make sure to add your changes to the appropriate categories: ### Changed - Changed return type of `fn expand(…)` crate-level function from `-> TestSuite` to `-> ExpandTestSuite`. +- Updated dependencies: + - `regex` from `1.10.3` to `1.11.1` ### Deprecated