Skip to content

Commit 0865afb

Browse files
committed
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
1 parent 156a0c5 commit 0865afb

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
1.1.5 (2019-04-01)
2+
==================
3+
This releases fixes a bug in regex's dependency specification where it requires
4+
a newer version of regex-syntax, but this wasn't communicated correctly in the
5+
Cargo.toml. This would have been caught by a minimal version check, but this
6+
check was disabled because the `rand` crate itself advertises incorrect
7+
dependency specifications.
8+
9+
Bug fixes:
10+
11+
* [BUG #570](https://github.com/rust-lang/regex/pull/570):
12+
Fix regex-syntax minimal version.
13+
14+
115
1.1.4 (2019-03-31)
216
==================
317
This release fixes a backwards compatibility regression where Regex was no

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ memchr = "2.0.2"
3232
# For managing regex caches quickly across multiple threads.
3333
thread_local = "0.3.6"
3434
# For parsing regular expressions.
35-
regex-syntax = { path = "regex-syntax", version = "0.6.2" }
35+
regex-syntax = { path = "regex-syntax", version = "0.6.6" }
3636
# For compiling UTF-8 decoding into automata.
3737
utf8-ranges = "1.0.1"
3838

0 commit comments

Comments
 (0)