Skip to content

Commit

Permalink
Bump versions everywhere.
Browse files Browse the repository at this point in the history
Fixes #296, Fixes #307
  • Loading branch information
BurntSushi committed Dec 30, 2016
1 parent c4faddf commit ca60bf9
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: rust
rust:
- 1.3.0
- 1.12.0
- stable
- beta
- nightly
Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "regex"
version = "0.1.80" #:version
version = "0.2.0" #:version
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand All @@ -16,23 +16,23 @@ finite automata and guarantees linear time matching on all inputs.
# For very fast prefix literal matching.
aho-corasick = "0.5.3"
# For skipping along search text quickly when a leading byte is known.
memchr = "0.1.9"
memchr = "0.1.11"
# For managing regex caches quickly across multiple threads.
thread_local = "0.2.4"
thread_local = "0.3.2"
# For parsing regular expressions.
regex-syntax = { path = "regex-syntax", version = "0.3.8" }
regex-syntax = { path = "regex-syntax", version = "0.4.0" }
# For accelerating text search.
simd = { version = "0.1.0", optional = true }
# For compiling UTF-8 decoding into automata.
utf8-ranges = "0.1.3"

[dev-dependencies]
# For examples.
lazy_static = "0.1"
lazy_static = "0.2.2"
# For property based tests.
quickcheck = "0.2"
quickcheck = "0.4.1"
# For generating random test data.
rand = "0.3"
rand = "0.3.15"

[features]
# Enable to use the unstable pattern traits defined in std.
Expand Down
6 changes: 3 additions & 3 deletions bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ libc = "0.2"
onig = { version = "0.4", optional = true }
libpcre-sys = { version = "0.2", optional = true }
memmap = "0.2"
regex = { version = "0.1", path = "..", features = ["simd-accel"] }
regex_macros = { version = "0.1", path = "../regex_macros", optional = true }
regex-syntax = { version = "0.3", path = "../regex-syntax" }
regex = { version = "0.2.0", path = "..", features = ["simd-accel"] }
regex_macros = { version = "0.2.0", path = "../regex_macros", optional = true }
regex-syntax = { version = "0.4.0", path = "../regex-syntax" }
rustc-serialize = "0.3"

[build-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions regex-capi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rure"
version = "0.1.1" #:version
version = "0.2.0" #:version
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand All @@ -17,4 +17,4 @@ crate-type = ["staticlib", "cdylib"]

[dependencies]
libc = "0.2"
regex = { version = "0.1.77", path = ".." }
regex = { version = "0.2.0", path = ".." }
4 changes: 2 additions & 2 deletions regex-debug/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ description = "A tool useful for debugging regular expressions."

[dependencies]
docopt = "0.6"
regex = { version = "0.1", path = ".." }
regex-syntax = { version = "0.3", path = "../regex-syntax" }
regex = { version = "0.2", path = ".." }
regex-syntax = { version = "0.4.0", path = "../regex-syntax" }
rustc-serialize = "0.3"

[profile.release]
Expand Down
6 changes: 3 additions & 3 deletions regex-syntax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "regex-syntax"
version = "0.3.9" #:version
version = "0.4.0" #:version
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-lang/regex"
Expand All @@ -9,5 +9,5 @@ homepage = "https://github.com/rust-lang/regex"
description = "A regular expression parser."

[dev-dependencies]
quickcheck = "0.2"
rand = "0.3"
quickcheck = "0.4.1"
rand = "0.3.15"
8 changes: 4 additions & 4 deletions regex_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "regex_macros"
version = "0.1.38"
version = "0.2.0"
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-lang/regex"
Expand All @@ -19,16 +19,16 @@ plugin = true

[dependencies.regex]
path = ".."
version = "0.1.63"
version = "0.2.0"
features = ["pattern"]

[dependencies.regex-syntax]
path = "../regex-syntax"
version = "0.3.1"
version = "0.4.0"

[dev-dependencies]
# For generating random test data.
rand = "0.3"
rand = "0.3.15"

[[test]]
path = "../tests/test_plugin.rs"
Expand Down

0 comments on commit ca60bf9

Please sign in to comment.