File tree 4 files changed +23
-7
lines changed
4 files changed +23
-7
lines changed Original file line number Diff line number Diff line change
1
+ 0.2.1
2
+ =====
3
+ One major bug with ` replace_all ` has been fixed along with a couple of other
4
+ touchups.
5
+
6
+ * [ BUG #312 ] ( https://github.com/rust-lang/regex/issues/312 ) :
7
+ Fix documentation for ` NoExpand ` to reference correct lifetime parameter.
8
+ * [ BUG #314 ] ( https://github.com/rust-lang/regex/issues/314 ) :
9
+ Fix a bug with ` replace_all ` when replacing a match with the empty string.
10
+ * [ BUG #316 ] ( https://github.com/rust-lang/regex/issues/316 ) :
11
+ Note a missing breaking change from the ` 0.2.0 ` CHANGELOG entry.
12
+ (` RegexBuilder::compile ` was renamed to ` RegexBuilder::build ` .)
13
+ * [ BUG #324 ] ( https://github.com/rust-lang/regex/issues/324 ) :
14
+ Compiling ` regex ` should only require one version of ` memchr ` crate.
15
+
1
16
0.2.0
2
17
=====
3
18
This is a new major release of the regex crate, and is an implementation of the
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " regex"
3
- version = " 0.2.0 " # :version
3
+ version = " 0.2.1 " # :version
4
4
authors = [" The Rust Project Developers" ]
5
5
license = " MIT/Apache-2.0"
6
6
readme = " README.md"
@@ -14,17 +14,17 @@ finite automata and guarantees linear time matching on all inputs.
14
14
15
15
[dependencies ]
16
16
# For very fast prefix literal matching.
17
- aho-corasick = " 0.5.3 "
17
+ aho-corasick = " 0.6.0 "
18
18
# For skipping along search text quickly when a leading byte is known.
19
- memchr = " 1"
19
+ memchr = " 1.0.0 "
20
20
# For managing regex caches quickly across multiple threads.
21
21
thread_local = " 0.3.2"
22
22
# For parsing regular expressions.
23
23
regex-syntax = { path = " regex-syntax" , version = " 0.4.0" }
24
24
# For accelerating text search.
25
- simd = { version = " 0.1.0 " , optional = true }
25
+ simd = { version = " 0.1.1 " , optional = true }
26
26
# For compiling UTF-8 decoding into automata.
27
- utf8-ranges = " 1"
27
+ utf8-ranges = " 1.0.0 "
28
28
29
29
[dev-dependencies ]
30
30
# For examples.
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ cargo doc --verbose --manifest-path regex-syntax/Cargo.toml
24
24
# Run tests on regex-capi crate.
25
25
cargo build --verbose --manifest-path regex-capi/Cargo.toml
26
26
(cd regex-capi/ctest && ./compile && LD_LIBRARY_PATH=../target/debug ./test)
27
- (cd regex-capi/examples && ./compile && LD_LIBRARY_PATH=../target/release ./iter)
27
+ (cd regex-capi/examples && ./compile && LD_LIBRARY_PATH=../target/debug ./iter)
28
28
29
29
# Make sure benchmarks compile. Don't run them though because they take a
30
30
# very long time.
Original file line number Diff line number Diff line change 2
2
3
3
set -ex
4
4
5
- cargo build --release --manifest-path ../Cargo.toml
5
+ # N.B. Add `--release` flag to `cargo build` to make the example run faster.
6
+ cargo build --manifest-path ../Cargo.toml
6
7
gcc -O3 -DDEBUG -o iter iter.c -ansi -Wall -I../include -L../target/release -lrure
7
8
# If you're using librure.a, then you'll need to link other stuff:
8
9
# -lutil -ldl -lpthread -lgcc_s -lc -lm -lrt -lutil -lrure
You can’t perform that action at this time.
0 commit comments