diff --git a/CHANGELOG.md b/CHANGELOG.md index eccac61..fa9c22b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,20 @@ # Changelog -## v0.3.0 (Month DD, YYYY) +## v0.3.0 (September 05, 2024) ### New features and changes -Be able to compare by tag ([#40](https://github.com/KnpLabs/should-skip-ci/pull/40)). +Be able to compare by tag ([#40](https://github.com/KnpLabs/should-skip-ci/pull/40), [#42](https://github.com/KnpLabs/should-skip-ci/pull/42)). A new `--base-ref` CLI arg has been introduced in order to compare a specific tag or commit. Note that this change as introduced changes to the signature of the [`should_skip_ci` function](/src/lib.rs). +### Documentation updates + +- update CircleCI doc example considering CircleCI deprecations ([#41](https://github.com/KnpLabs/should-skip-ci/pull/41)). + ## v0.2.3 (August 22, 2024) This is a maintenance release providing the latest (1.80.1) rust environment, diff --git a/Cargo.lock b/Cargo.lock index b528396..3048f4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -213,7 +213,7 @@ dependencies = [ [[package]] name = "ssc" -version = "0.2.3" +version = "0.3.0" dependencies = [ "clap", "log", diff --git a/Cargo.toml b/Cargo.toml index b7e764d..7e1654d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssc" -version = "0.2.3" +version = "0.3.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"