File tree 3 files changed +31
-6
lines changed
3 files changed +31
-6
lines changed Original file line number Diff line number Diff line change
1
+ 1.0.2 (2018-07-18)
2
+ ==================
3
+ This release exposes some new lower level APIs on ` Regex ` that permit
4
+ amortizing allocation and controlling the location at which a search is
5
+ performed in a more granular way. Most users of the regex crate will not
6
+ need or want to use these APIs.
7
+
8
+ New features:
9
+
10
+ * [ FEATURE #493 ] ( https://github.com/rust-lang/regex/pull/493 ) :
11
+ Add a few lower level APIs for amortizing allocation and more fine grained
12
+ searching.
13
+
14
+ Bug fixes:
15
+
16
+ * [ BUG 3981d2ad] ( https://github.com/rust-lang/regex/commit/3981d2ad ) :
17
+ Correct outdated documentation on ` RegexBuilder::dot_matches_new_line ` .
18
+ * [ BUG 7ebe4ae0] ( https://github.com/rust-lang/regex/commit/7ebe4ae0 ) :
19
+ Correct outdated documentation on ` Parser::allow_invalid_utf8 ` in the
20
+ ` regex-syntax ` crate.
21
+ * [ BUG 24c7770b] ( https://github.com/rust-lang/regex/commit/24c7770b ) :
22
+ Fix a bug in the HIR printer where it wouldn't correctly escape meta
23
+ characters in character classes.
24
+
25
+
1
26
1.0.1 (2018-06-19)
2
27
==================
3
28
This release upgrades regex's Unicode tables to Unicode 11, and enables SIMD
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " regex"
3
- version = " 1.0.1 " # :version
3
+ version = " 1.0.2 " # :version
4
4
authors = [" The Rust Project Developers" ]
5
5
license = " MIT/Apache-2.0"
6
6
readme = " README.md"
Original file line number Diff line number Diff line change @@ -210,11 +210,11 @@ recommended for general use.
210
210
211
211
This crate's minimum supported ` rustc ` version is ` 1.20.0 ` .
212
212
213
- The current ** tentative** policy is that the minimum Rust version required to
214
- use this crate can be increased in minor version updates. For example, if
215
- regex 1.0.0 requires Rust 1.20.0, then regex 1.0.z for all values of ` z ` will
216
- also require Rust 1.20.0 or newer. However, regex 1.y for ` y > 0 ` may require
217
- a newer minimum version of Rust.
213
+ The current ** tentative** policy is that the minimum Rust version required
214
+ to use this crate can be increased in minor version updates. For example, if
215
+ regex 1.0 requires Rust 1.20.0, then regex 1.0.z for all values of ` z ` will
216
+ also require Rust 1.20.0 or newer. However, regex 1.y for ` y > 0 ` may require a
217
+ newer minimum version of Rust.
218
218
219
219
In general, this crate will be conservative with respect to the minimum
220
220
supported version of Rust.
You can’t perform that action at this time.
0 commit comments