From 7fee083704db9b82b3a1bf9c6367f3004de0b00d Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Tue, 27 Jan 2026 20:00:57 +0000 Subject: [PATCH] Require regress v0.10.5 There are tests that check for the functionality that version newly supports, so an earlier version won't work as expected. --- Cargo.toml | 2 +- docs/api/changelog.rst | 1 + docs/metadata/changelog.rst | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d4cd2ca3..dd321ec4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ log = { version = "0.4.6", features = ["std"] } loot-condition-interpreter = ">= 5, < 7" petgraph = ">= 0.6, < 0.9" rayon = "1" -regress = ">= 0.2.0, < 0.11" +regress = "0.10.5" rustc-hash = ">= 1.0.0, < 3" saphyr = ">= 0.0.5, < 0.0.7" unicase = "2.6.0" diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index bdee4bbc..4baa1779 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -36,6 +36,7 @@ Added deduplicate certain metadata values. The behaviour is configurable using the new ``MetadataWriteOptions`` struct (or class, in the C++ wrapper), and is disabled by default. +- Support for modifiers in plugin metadata name regexes. Fixed ----- diff --git a/docs/metadata/changelog.rst b/docs/metadata/changelog.rst index 79f45300..f9130e75 100644 --- a/docs/metadata/changelog.rst +++ b/docs/metadata/changelog.rst @@ -39,7 +39,6 @@ Changed exist), the function now always evaluates to false. Previously it would evaluate to true when the comparator was ``<``, ``<=`` or ``!=``, and false otherwise. -- Plugin metadata name regexes now support modifiers. - The specific regex syntax and features supported are now explicitly decoupled from metadata syntax versioning, so they can change independently.