From b16d01a5cc7bdbbbf45b1b756d00ed35f39bfca4 Mon Sep 17 00:00:00 2001 From: Nicolas MURE Date: Thu, 14 May 2020 17:46:32 +0200 Subject: [PATCH] prepare v0.2.0 --- Cargo.lock | 22 +++++++++++----------- Cargo.toml | 2 +- README.md | 3 +++ ci/Cargo.toml | 2 +- cli/Cargo.toml | 2 +- git/Cargo.toml | 2 +- logger/Cargo.toml | 2 +- utils/Cargo.toml | 2 +- 8 files changed, 20 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f162d1e..1c3efd9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -37,7 +37,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "ci" -version = "0.1.0" +version = "0.2.0" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -58,7 +58,7 @@ dependencies = [ [[package]] name = "cli" -version = "0.1.0" +version = "0.2.0" dependencies = [ "structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -75,10 +75,10 @@ dependencies = [ [[package]] name = "git" -version = "0.1.0" +version = "0.2.0" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "utils 0.1.0", + "utils 0.2.0", ] [[package]] @@ -104,7 +104,7 @@ dependencies = [ [[package]] name = "logger" -version = "0.1.0" +version = "0.2.0" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "simple_logger 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -190,12 +190,12 @@ dependencies = [ [[package]] name = "ssc" -version = "0.1.0" +version = "0.2.0" dependencies = [ - "ci 0.1.0", - "cli 0.1.0", - "git 0.1.0", - "logger 0.1.0", + "ci 0.2.0", + "cli 0.2.0", + "git 0.2.0", + "logger 0.2.0", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -260,7 +260,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "utils" -version = "0.1.0" +version = "0.2.0" [[package]] name = "vec_map" diff --git a/Cargo.toml b/Cargo.toml index 1d67ad7..ab16b82 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssc" -version = "0.1.0" +version = "0.2.0" description = "A CLI tool to skip a CI build that is not concerned by the latest changes." homepage = "https://github.com/KnpLabs/should-skip-ci" repository = "git@github.com:KnpLabs/should-skip-ci.git" diff --git a/README.md b/README.md index d38046f..326d7cb 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,8 @@ $ sudo curl -sSL -o /usr/local/bin/ssc https://github.com/KnpLabs/should-skip-ci $ sudo chmod +x /usr/local/bin/ssc ``` +See the latest version in the [releases panel](https://github.com/KnpLabs/should-skip-ci/releases). + ### Usage ``` @@ -71,6 +73,7 @@ USAGE: FLAGS: -h, --help Prints help information -V, --version Prints version information + -v,-vv Increases verbosity (-v for info, -vv for debug). OPTIONS: --base-branch The branch to use as a base to know from where the commit range starts (i.e. to diff --git a/ci/Cargo.toml b/ci/Cargo.toml index 2f9f2aa..5c86446 100644 --- a/ci/Cargo.toml +++ b/ci/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ci" -version = "0.1.0" +version = "0.2.0" authors = ["KNP Labs"] edition = "2018" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index e231285..c722b9a 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli" -version = "0.1.0" +version = "0.2.0" authors = ["KNP Labs"] edition = "2018" diff --git a/git/Cargo.toml b/git/Cargo.toml index 83ae158..79a48ca 100644 --- a/git/Cargo.toml +++ b/git/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git" -version = "0.1.0" +version = "0.2.0" authors = ["KNP Labs"] edition = "2018" diff --git a/logger/Cargo.toml b/logger/Cargo.toml index 3dec548..acf77bc 100644 --- a/logger/Cargo.toml +++ b/logger/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "logger" -version = "0.1.0" +version = "0.2.0" authors = ["KNP Labs"] edition = "2018" diff --git a/utils/Cargo.toml b/utils/Cargo.toml index b78ffa4..187e814 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,5 +1,5 @@ [package] name = "utils" -version = "0.1.0" +version = "0.2.0" authors = ["KNP Labs"] edition = "2018"