Skip to content

Commit

Permalink
deps: bump regex-syntax to 0.6.6
Browse files Browse the repository at this point in the history
0.6.6 introduced a new API that regex now uses, so it is the new
required minimal version.

Fixes #570
  • Loading branch information
BurntSushi committed Apr 1, 2019
1 parent 156a0c5 commit 0865afb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 0865afb

Please sign in to comment.