From 8bf0d727250818dbb0e5565a2c06a0ddee4f5c56 Mon Sep 17 00:00:00 2001 From: schaeff Date: Wed, 6 Feb 2019 11:24:03 +0100 Subject: [PATCH] bump versions --- Cargo.lock | 6 +++--- zokrates_cli/Cargo.toml | 2 +- zokrates_cli/src/bin.rs | 2 +- zokrates_core/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 25a0bad8..0873d3aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -796,7 +796,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "zokrates_cli" -version = "0.4.0" +version = "0.4.1" dependencies = [ "assert_cli 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "bincode 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -804,14 +804,14 @@ dependencies = [ "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)", - "zokrates_core 0.3.4", + "zokrates_core 0.3.5", "zokrates_field 0.3.2", "zokrates_fs_resolver 0.4.0", ] [[package]] name = "zokrates_core" -version = "0.3.4" +version = "0.3.5" dependencies = [ "assert_cli 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "bimap 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/zokrates_cli/Cargo.toml b/zokrates_cli/Cargo.toml index d95ddda4..55418855 100644 --- a/zokrates_cli/Cargo.toml +++ b/zokrates_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zokrates_cli" -version = "0.4.0" +version = "0.4.1" authors = ["Jacob Eberhardt ", "Dennis Kuhnert ", "Thibaut Schaeffer "] repository = "https://github.com/JacobEberhardt/ZoKrates.git" edition = "2018" diff --git a/zokrates_cli/src/bin.rs b/zokrates_cli/src/bin.rs index 07db7614..10a6c14b 100644 --- a/zokrates_cli/src/bin.rs +++ b/zokrates_cli/src/bin.rs @@ -42,7 +42,7 @@ fn cli() -> Result<(), String> { // cli specification using clap library let matches = App::new("ZoKrates") .setting(AppSettings::SubcommandRequiredElseHelp) - .version("0.4.0") + .version("0.4.1") .author("Jacob Eberhardt, Thibaut Schaeffer, Dennis Kuhnert") .about("Supports generation of zkSNARKs from high level language code including Smart Contracts for proof verification on the Ethereum Blockchain.\n'I know that I show nothing!'") .subcommand(SubCommand::with_name("compile") diff --git a/zokrates_core/Cargo.toml b/zokrates_core/Cargo.toml index 709dd567..4d6d93f2 100644 --- a/zokrates_core/Cargo.toml +++ b/zokrates_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zokrates_core" -version = "0.3.4" +version = "0.3.5" authors = ["Jacob Eberhardt ", "Dennis Kuhnert "] repository = "https://github.com/JacobEberhardt/ZoKrates" readme = "README.md"