From 0865afb65df9ac0a4fbbf28f83cf7ca084d4a663 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Mon, 1 Apr 2019 06:46:08 -0400 Subject: [PATCH] deps: bump regex-syntax to 0.6.6 0.6.6 introduced a new API that regex now uses, so it is the new required minimal version. Fixes #570 --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 975ee12d4d..9718849298 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +1.1.5 (2019-04-01) +================== +This releases fixes a bug in regex's dependency specification where it requires +a newer version of regex-syntax, but this wasn't communicated correctly in the +Cargo.toml. This would have been caught by a minimal version check, but this +check was disabled because the `rand` crate itself advertises incorrect +dependency specifications. + +Bug fixes: + +* [BUG #570](https://github.com/rust-lang/regex/pull/570): + Fix regex-syntax minimal version. + + 1.1.4 (2019-03-31) ================== This release fixes a backwards compatibility regression where Regex was no diff --git a/Cargo.toml b/Cargo.toml index 8bc221ba48..281bff3f3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ memchr = "2.0.2" # For managing regex caches quickly across multiple threads. thread_local = "0.3.6" # For parsing regular expressions. -regex-syntax = { path = "regex-syntax", version = "0.6.2" } +regex-syntax = { path = "regex-syntax", version = "0.6.6" } # For compiling UTF-8 decoding into automata. utf8-ranges = "1.0.1"