Skip to content

Commit f8903d9

Browse files
committed
Bump versions everywhere.
Fixes #296, Fixes #307
1 parent c4faddf commit f8903d9

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: rust
22
rust:
3-
- 1.3.0
3+
- 1.12.0
44
- stable
55
- beta
66
- nightly

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "regex"
3-
version = "0.1.80" #:version
3+
version = "0.2.0" #:version
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -16,23 +16,23 @@ finite automata and guarantees linear time matching on all inputs.
1616
# For very fast prefix literal matching.
1717
aho-corasick = "0.5.3"
1818
# For skipping along search text quickly when a leading byte is known.
19-
memchr = "0.1.9"
19+
memchr = "1"
2020
# For managing regex caches quickly across multiple threads.
21-
thread_local = "0.2.4"
21+
thread_local = "0.3.2"
2222
# For parsing regular expressions.
23-
regex-syntax = { path = "regex-syntax", version = "0.3.8" }
23+
regex-syntax = { path = "regex-syntax", version = "0.4.0" }
2424
# For accelerating text search.
2525
simd = { version = "0.1.0", optional = true }
2626
# For compiling UTF-8 decoding into automata.
27-
utf8-ranges = "0.1.3"
27+
utf8-ranges = "1"
2828

2929
[dev-dependencies]
3030
# For examples.
31-
lazy_static = "0.1"
31+
lazy_static = "0.2.2"
3232
# For property based tests.
33-
quickcheck = "0.2"
33+
quickcheck = "0.4.1"
3434
# For generating random test data.
35-
rand = "0.3"
35+
rand = "0.3.15"
3636

3737
[features]
3838
# Enable to use the unstable pattern traits defined in std.

bench/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ libc = "0.2"
1717
onig = { version = "0.4", optional = true }
1818
libpcre-sys = { version = "0.2", optional = true }
1919
memmap = "0.2"
20-
regex = { version = "0.1", path = "..", features = ["simd-accel"] }
21-
regex_macros = { version = "0.1", path = "../regex_macros", optional = true }
22-
regex-syntax = { version = "0.3", path = "../regex-syntax" }
20+
regex = { version = "0.2.0", path = "..", features = ["simd-accel"] }
21+
regex_macros = { version = "0.2.0", path = "../regex_macros", optional = true }
22+
regex-syntax = { version = "0.4.0", path = "../regex-syntax" }
2323
rustc-serialize = "0.3"
2424

2525
[build-dependencies]

regex-capi/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rure"
3-
version = "0.1.1" #:version
3+
version = "0.2.0" #:version
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -17,4 +17,4 @@ crate-type = ["staticlib", "cdylib"]
1717

1818
[dependencies]
1919
libc = "0.2"
20-
regex = { version = "0.1.77", path = ".." }
20+
regex = { version = "0.2.0", path = ".." }

regex-debug/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ description = "A tool useful for debugging regular expressions."
1111

1212
[dependencies]
1313
docopt = "0.6"
14-
regex = { version = "0.1", path = ".." }
15-
regex-syntax = { version = "0.3", path = "../regex-syntax" }
14+
regex = { version = "0.2", path = ".." }
15+
regex-syntax = { version = "0.4.0", path = "../regex-syntax" }
1616
rustc-serialize = "0.3"
1717

1818
[profile.release]

regex-syntax/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "regex-syntax"
3-
version = "0.3.9" #:version
3+
version = "0.4.0" #:version
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rust-lang/regex"
@@ -9,5 +9,5 @@ homepage = "https://github.com/rust-lang/regex"
99
description = "A regular expression parser."
1010

1111
[dev-dependencies]
12-
quickcheck = "0.2"
13-
rand = "0.3"
12+
quickcheck = "0.4.1"
13+
rand = "0.3.15"

regex_macros/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "regex_macros"
3-
version = "0.1.38"
3+
version = "0.2.0"
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rust-lang/regex"
@@ -19,16 +19,16 @@ plugin = true
1919

2020
[dependencies.regex]
2121
path = ".."
22-
version = "0.1.63"
22+
version = "0.2.0"
2323
features = ["pattern"]
2424

2525
[dependencies.regex-syntax]
2626
path = "../regex-syntax"
27-
version = "0.3.1"
27+
version = "0.4.0"
2828

2929
[dev-dependencies]
3030
# For generating random test data.
31-
rand = "0.3"
31+
rand = "0.3.15"
3232

3333
[[test]]
3434
path = "../tests/test_plugin.rs"

0 commit comments

Comments
 (0)