Skip to content

Commit

Permalink
regex 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed Jun 19, 2018
1 parent c52a284 commit d107c80
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion regex-capi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ crate-type = ["staticlib", "cdylib"]

[dependencies]
libc = "0.2"
regex = { version = "1.0.0", path = ".." }
regex = { version = "1", path = ".." }
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d107c80

Please sign in to comment.