Skip to content

Commit b5ef0ec

Browse files
committed
regex 1.0
1 parent 0052f3c commit b5ef0ec

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "regex"
3-
version = "0.2.11" #:version
3+
version = "1.0.0" #:version
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -30,7 +30,7 @@ memchr = "2.0.0"
3030
# For managing regex caches quickly across multiple threads.
3131
thread_local = "0.3.2"
3232
# For parsing regular expressions.
33-
regex-syntax = { path = "regex-syntax", version = "0.5.6" }
33+
regex-syntax = { path = "regex-syntax", version = "0.6.0" }
3434
# For compiling UTF-8 decoding into automata.
3535
utf8-ranges = "1.0.0"
3636

bench/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ libc = "0.2"
1818
onig = { version = "3", optional = true }
1919
libpcre-sys = { version = "0.2", optional = true }
2020
memmap = "0.6"
21-
regex = { version = "0.2.0", path = "..", features = ["unstable"] }
22-
regex-syntax = { version = "0.5.6", path = "../regex-syntax" }
21+
regex = { version = "1.0.0", path = "..", features = ["unstable"] }
22+
regex-syntax = { version = "0.6.0", path = "../regex-syntax" }
2323
serde = "1"
2424
serde_derive = "1"
2525

regex-capi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ crate-type = ["staticlib", "cdylib"]
1818

1919
[dependencies]
2020
libc = "0.2"
21-
regex = { version = "0.2.0", path = ".." }
21+
regex = { version = "1.0.0", path = ".." }

regex-debug/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ workspace = ".."
1212

1313
[dependencies]
1414
docopt = "0.8"
15-
regex = { version = "0.2", path = ".." }
16-
regex-syntax = { version = "0.5.6", path = "../regex-syntax" }
15+
regex = { version = "1.0", path = ".." }
16+
regex-syntax = { version = "0.6.0", path = "../regex-syntax" }
1717
serde = "1"
1818
serde_derive = "1"
1919
utf8-ranges = "1"

regex-syntax/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "regex-syntax"
3-
version = "0.5.6" #:version
3+
version = "0.6.0" #:version
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rust-lang/regex"

0 commit comments

Comments
 (0)