From 478eb043e93de467d0a59ad5887b0790316f0984 Mon Sep 17 00:00:00 2001 From: West Date: Fri, 29 Jul 2022 07:34:53 +0000 Subject: [PATCH] bump to 1.6.0 Because why the hell not? 1.6.0 (2022-07-05) New features: FEATURE #832: Clarify that Captures::len includes all groups, not just matching groups. FEATURE #857: Add an ExactSizeIterator impl for SubCaptureMatches. FEATURE #861: Improve RegexSet documentation examples. FEATURE #877: Upgrade to Unicode 14. Bug fixes: BUG #792: Fix error message rendering bug. 1.5.6 (2022-05-20) BUG #680: Fixes a bug where [[:alnum:][:^ascii:]] dropped [:alnum:] from the class. BUG #859: Fixes a bug where Hir::is_match_empty returned false for \b. BUG #862: Fixes a bug where 'ab??' matches 'ab' instead of 'a' in 'ab'. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9606a3befdd..011b7418546 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -129,11 +129,11 @@ atty = { version = "0.2", optional = true } termcolor = { version = "1.1.1", optional = true } terminal_size = { version = "0.1.12", optional = true } lazy_static = { version = "1", optional = true } -regex = { version = "1.5.5", optional = true } +regex = { version = "1.6", optional = true } backtrace = { version = "0.3", optional = true } [dev-dependencies] -regex = "1.5.5" +regex = "1.6" lazy_static = "1" criterion = "0.3.2" trybuild = "1.0.18"