From 43cec3ba8d6efe4d089217a7fd68d453cfd727d9 Mon Sep 17 00:00:00 2001 From: David Lattimore Date: Thu, 6 Dec 2018 11:27:08 +1100 Subject: [PATCH] Bump vesion to 0.3.0 --- Cargo.lock | 10 +++++----- evcxr/Cargo.toml | 2 +- evcxr_jupyter/Cargo.toml | 4 ++-- evcxr_repl/Cargo.toml | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0634512..535018f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -135,7 +135,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "evcxr" -version = "0.2.0" +version = "0.3.0" dependencies = [ "backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -153,12 +153,12 @@ dependencies = [ [[package]] name = "evcxr_jupyter" -version = "0.2.0" +version = "0.3.0" dependencies = [ "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "colored 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "dirs 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "evcxr 0.2.0", + "evcxr 0.3.0", "failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "hmac 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -170,11 +170,11 @@ dependencies = [ [[package]] name = "evcxr_repl" -version = "0.2.0" +version = "0.3.0" dependencies = [ "colored 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "dirs 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "evcxr 0.2.0", + "evcxr 0.3.0", "failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/evcxr/Cargo.toml b/evcxr/Cargo.toml index 6a1cbde..605c436 100644 --- a/evcxr/Cargo.toml +++ b/evcxr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evcxr" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0" description = "An Evaluation Context for Rust" repository = "https://github.com/google/evcxr" diff --git a/evcxr_jupyter/Cargo.toml b/evcxr_jupyter/Cargo.toml index 9461f47..bba6ae0 100644 --- a/evcxr_jupyter/Cargo.toml +++ b/evcxr_jupyter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evcxr_jupyter" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0" description = "An Jupyter Kernel for Rust" repository = "https://github.com/google/evcxr" @@ -11,7 +11,7 @@ authors = [ ] [dependencies] -evcxr = { version = "=0.2.0", path = "../evcxr" } +evcxr = { version = "=0.3.0", path = "../evcxr" } json = "=0.11.13" failure = { version = "=0.1.1", default-features = false, features = [ "std" ] } zmq = "=0.8.2" diff --git a/evcxr_repl/Cargo.toml b/evcxr_repl/Cargo.toml index 2a1bdf1..a5524c8 100644 --- a/evcxr_repl/Cargo.toml +++ b/evcxr_repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evcxr_repl" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0" description = "A REPL for Rust" repository = "https://github.com/google/evcxr" @@ -8,7 +8,7 @@ readme = "README.md" authors = ["David Lattimore "] [dependencies] -evcxr = { version = "=0.2.0", path = "../evcxr" } +evcxr = { version = "=0.3.0", path = "../evcxr" } rustyline = "=1.0.0" colored = "=1.6.0" dirs = "=1.0.2"