Skip to content

Commit

Permalink
regex 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed May 1, 2018
1 parent 0052f3c commit b5ef0ec
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "regex"
version = "0.2.11" #:version
version = "1.0.0" #:version
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand Down Expand Up @@ -30,7 +30,7 @@ memchr = "2.0.0"
# For managing regex caches quickly across multiple threads.
thread_local = "0.3.2"
# For parsing regular expressions.
regex-syntax = { path = "regex-syntax", version = "0.5.6" }
regex-syntax = { path = "regex-syntax", version = "0.6.0" }
# For compiling UTF-8 decoding into automata.
utf8-ranges = "1.0.0"

Expand Down
4 changes: 2 additions & 2 deletions bench/Cargo.toml
Expand Up @@ -18,8 +18,8 @@ libc = "0.2"
onig = { version = "3", optional = true }
libpcre-sys = { version = "0.2", optional = true }
memmap = "0.6"
regex = { version = "0.2.0", path = "..", features = ["unstable"] }
regex-syntax = { version = "0.5.6", path = "../regex-syntax" }
regex = { version = "1.0.0", path = "..", features = ["unstable"] }
regex-syntax = { version = "0.6.0", path = "../regex-syntax" }
serde = "1"
serde_derive = "1"

Expand Down
2 changes: 1 addition & 1 deletion regex-capi/Cargo.toml
Expand Up @@ -18,4 +18,4 @@ crate-type = ["staticlib", "cdylib"]

[dependencies]
libc = "0.2"
regex = { version = "0.2.0", path = ".." }
regex = { version = "1.0.0", path = ".." }
4 changes: 2 additions & 2 deletions regex-debug/Cargo.toml
Expand Up @@ -12,8 +12,8 @@ workspace = ".."

[dependencies]
docopt = "0.8"
regex = { version = "0.2", path = ".." }
regex-syntax = { version = "0.5.6", path = "../regex-syntax" }
regex = { version = "1.0", path = ".." }
regex-syntax = { version = "0.6.0", path = "../regex-syntax" }
serde = "1"
serde_derive = "1"
utf8-ranges = "1"
2 changes: 1 addition & 1 deletion regex-syntax/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "regex-syntax"
version = "0.5.6" #:version
version = "0.6.0" #:version
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-lang/regex"
Expand Down

0 comments on commit b5ef0ec

Please sign in to comment.