Skip to content

Commit 571d5a6

Browse files
BurntSushiEthan Pailes
authored and
Ethan Pailes
committed
regex 1.0.1
1 parent d3b6061 commit 571d5a6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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.0" #:version
3+
version = "1.0.1" #:version
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"

bench/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ libc = "0.2"
1818
onig = { version = "3", optional = true }
1919
libpcre-sys = { version = "0.2", optional = true }
2020
memmap = "0.6"
21-
regex = { version = "1.0.0", path = ".." }
21+
regex = { version = "1", path = ".." }
2222
regex-syntax = { version = "0.6.0", path = "../regex-syntax" }
2323
serde = "1"
2424
serde_derive = "1"

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 = "1.0.0", path = ".." }
21+
regex = { version = "1", path = ".." }

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ used by adding `regex` to your dependencies in your project's `Cargo.toml`.
2929
3030
```toml
3131
[dependencies]
32-
regex = "1.0.0"
32+
regex = "1"
3333
```
3434
3535
and this to your crate root:

0 commit comments

Comments
 (0)