Skip to content

Commit 991ae1a

Browse files
committed
regex 1.0.2
1 parent 8421c9a commit 991ae1a

File tree

3 files changed

+31
-6
lines changed

3 files changed

+31
-6
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
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+
126
1.0.1 (2018-06-19)
227
==================
328
This release upgrades regex's Unicode tables to Unicode 11, and enables SIMD

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "regex"
3-
version = "1.0.1" #:version
3+
version = "1.0.2" #:version
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,11 @@ recommended for general use.
210210

211211
This crate's minimum supported `rustc` version is `1.20.0`.
212212

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.
218218

219219
In general, this crate will be conservative with respect to the minimum
220220
supported version of Rust.

0 commit comments

Comments
 (0)