From 61ea96bc09487be04a0f26bf0826b36a051d1b80 Mon Sep 17 00:00:00 2001 From: DrPeterVanNostrand Date: Tue, 18 Dec 2018 14:54:55 +0000 Subject: [PATCH] Bumped version from 1.0.0 to 2.0.0. --- Cargo.toml | 2 +- README.md | 31 +++++++++++++++---------------- src/cli.rs | 2 +- 3 files changed, 17 insertions(+), 18 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cfef1ea..5ba05d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "poagov" -version = "1.0.0" +version = "2.0.0" authors = ["DrPeterVanNostrand "] edition = "2018" readme = "README.md" diff --git a/README.md b/README.md index 7f0bd89..fafd74e 100644 --- a/README.md +++ b/README.md @@ -21,25 +21,24 @@ OSX. The `poagov` binary can be built from source for both OSX and Linux using t usage, if you do not have `libssl` installed, go to the "Requires libssl" section in this README to find out how to download it. -On Debian/Ubuntu: + $ mkdir poa-governance-notifications + $ cd poa-governance-notifications + + # Download `poagov` for Debian/Ubuntu: + $ curl -OL https://github.com/poanetwork/poa-governance-notifications/releases/download/v2.0.0/poagov-2.0.0-linux-x86_64.tar.gz + $ tar -xvzf poagov-2.0.0-linux-x86_64.tar.gz + $ rm poagov-2.0.0-linux-x86_64.tar.gz + $ mv poagov-2.0.0-linux-x86_64 poagov + + # Or download `poagov` for OSX: + $ curl -OL https://github.com/poanetwork/poa-governance-notifications/releases/download/v2.0.0/poagov-2.0.0-osx-x86_64.tar.gz + $ tar -xvzf poagov-2.0.0-osx-x86_64.tar.gz + $ rm poagov-2.0.0-osx-x86_64.tar.gz + $ mv poagov-2.0.0-osx-x86_64 poagov - $ curl -OL https://github.com/poanetwork/poa-governance-notifications/releases/download/v1.0.0/poagov-1.0.0-linux-x86_64.tar.gz - $ tar -xvzf poagov-1.0.0-linux-x86_64.tar.gz - $ rm poagov-1.0.0-linux-x86_64.tar.gz - $ cd poagov $ chmod +x poagov $ ./poagov --help -On OSX: - - $ curl -OL https://github.com/poanetwork/poa-governance-notifications/releases/download/v1.0.0/poagov-1.0.0-osx-x86_64.tar.gz - $ tar -xvzf poagov-1.0.0-osx-x86_64.tar.gz - $ rm poagov-1.0.0-osx-x86_64.tar.gz - $ cd poagov - $ chmod +x poagov - $ ./poagov --help - - ### Building `poagov` from Source To build the `poagov` CLI tool from source, clone this repo and run: @@ -112,7 +111,7 @@ running: # Or, if you built `poagov` from source run: $ target/release/poagov --help - poagov 1.0.0 + poagov 2.0.0 Monitors a POA Network blockchain for governance events. USAGE: diff --git a/src/cli.rs b/src/cli.rs index 2c65f6f..55cc987 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -5,7 +5,7 @@ use clap::{App, ArgMatches}; pub fn parse_cli() -> Cli { let cli_args = App::new("poagov") - .version("1.0.0") + .version("2.0.0") .about("Monitors a POA Network blockchain for governance events.") .args_from_usage( "[core] --core 'Monitors POA Network's Core Network for governance ballots'