File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change
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
+
1
15
1.1.4 (2019-03-31)
2
16
==================
3
17
This release fixes a backwards compatibility regression where Regex was no
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ memchr = "2.0.2"
32
32
# For managing regex caches quickly across multiple threads.
33
33
thread_local = " 0.3.6"
34
34
# For parsing regular expressions.
35
- regex-syntax = { path = " regex-syntax" , version = " 0.6.2 " }
35
+ regex-syntax = { path = " regex-syntax" , version = " 0.6.6 " }
36
36
# For compiling UTF-8 decoding into automata.
37
37
utf8-ranges = " 1.0.1"
38
38
You can’t perform that action at this time.
0 commit comments