From ca60bf94b49cbaa118a728eeab68f6c3b0349d41 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Thu, 29 Dec 2016 20:11:02 -0500 Subject: [PATCH] Bump versions everywhere. Fixes #296, Fixes #307 --- .travis.yml | 2 +- Cargo.toml | 14 +++++++------- bench/Cargo.toml | 6 +++--- regex-capi/Cargo.toml | 4 ++-- regex-debug/Cargo.toml | 4 ++-- regex-syntax/Cargo.toml | 6 +++--- regex_macros/Cargo.toml | 8 ++++---- 7 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9eed600032..7c9a99a1c1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: rust rust: - - 1.3.0 + - 1.12.0 - stable - beta - nightly diff --git a/Cargo.toml b/Cargo.toml index ab1680cdf8..9947ef8756 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -16,11 +16,11 @@ 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. @@ -28,11 +28,11 @@ 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. diff --git a/bench/Cargo.toml b/bench/Cargo.toml index 05654e072c..0bd686762a 100644 --- a/bench/Cargo.toml +++ b/bench/Cargo.toml @@ -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] diff --git a/regex-capi/Cargo.toml b/regex-capi/Cargo.toml index 8b5c8ae1bf..f5333f2af5 100644 --- a/regex-capi/Cargo.toml +++ b/regex-capi/Cargo.toml @@ -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" @@ -17,4 +17,4 @@ crate-type = ["staticlib", "cdylib"] [dependencies] libc = "0.2" -regex = { version = "0.1.77", path = ".." } +regex = { version = "0.2.0", path = ".." } diff --git a/regex-debug/Cargo.toml b/regex-debug/Cargo.toml index 6645ab60d4..cebad7ca4b 100644 --- a/regex-debug/Cargo.toml +++ b/regex-debug/Cargo.toml @@ -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] diff --git a/regex-syntax/Cargo.toml b/regex-syntax/Cargo.toml index 801a60acd6..c386b48a75 100644 --- a/regex-syntax/Cargo.toml +++ b/regex-syntax/Cargo.toml @@ -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" @@ -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" diff --git a/regex_macros/Cargo.toml b/regex_macros/Cargo.toml index c587e9ab16..7fd4ecd7a5 100644 --- a/regex_macros/Cargo.toml +++ b/regex_macros/Cargo.toml @@ -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" @@ -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"