diff --git a/Cargo.toml b/Cargo.toml index f657ed749a..65971dd298 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "regex" -version = "1.0.0" #:version +version = "1.0.1" #:version authors = ["The Rust Project Developers"] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/bench/Cargo.toml b/bench/Cargo.toml index 68b95af782..1d5547ac31 100644 --- a/bench/Cargo.toml +++ b/bench/Cargo.toml @@ -18,7 +18,7 @@ libc = "0.2" onig = { version = "3", optional = true } libpcre-sys = { version = "0.2", optional = true } memmap = "0.6" -regex = { version = "1.0.0", path = ".." } +regex = { version = "1", path = ".." } regex-syntax = { version = "0.6.0", path = "../regex-syntax" } serde = "1" serde_derive = "1" diff --git a/regex-capi/Cargo.toml b/regex-capi/Cargo.toml index c5115bcded..f5d9554385 100644 --- a/regex-capi/Cargo.toml +++ b/regex-capi/Cargo.toml @@ -18,4 +18,4 @@ crate-type = ["staticlib", "cdylib"] [dependencies] libc = "0.2" -regex = { version = "1.0.0", path = ".." } +regex = { version = "1", path = ".." } diff --git a/src/lib.rs b/src/lib.rs index 32428fe9be..0fb0c7150f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -29,7 +29,7 @@ used by adding `regex` to your dependencies in your project's `Cargo.toml`. ```toml [dependencies] -regex = "1.0.0" +regex = "1" ``` and this to your crate root: