diff --git a/Cargo.lock b/Cargo.lock index 4432b1f..c3fc905 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1724,7 +1724,7 @@ dependencies = [ [[package]] name = "silentdragonlite-cli" -version = "1.3.2" +version = "1.1.0" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index eaf7b7b..08342c6 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "silentdragonlite-cli" -version = "1.3.2" +version = "1.1.0" edition = "2018" [dependencies] diff --git a/cli/src/lib.rs b/cli/src/lib.rs index d019781..e6856eb 100644 --- a/cli/src/lib.rs +++ b/cli/src/lib.rs @@ -11,7 +11,7 @@ use silentdragonlitelib::{commands, #[macro_export] macro_rules! configure_clapapp { ( $freshapp: expr ) => { - $freshapp.version("1.3.2") + $freshapp.version("1.0.0") .arg(Arg::with_name("dangerous") .long("dangerous") .help("Disable server TLS certificate verification. Use this if you're running a local lightwalletd with a self-signed certificate. WARNING: This is dangerous, don't use it with a server that is not your own.") diff --git a/cli/src/version.rs b/cli/src/version.rs index 514eb12..b6a8121 100644 --- a/cli/src/version.rs +++ b/cli/src/version.rs @@ -1 +1 @@ -pub const VERSION:&str = "1.3.2"; \ No newline at end of file +pub const VERSION:&str = "1.1.0"; \ No newline at end of file