diff --git a/CHANGELOG.md b/CHANGELOG.md index f1e8a35..b54e132 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ All notable changes to this project will be documented in this file. +## [0.6.1] - 2022-03-13 + +### Bug Fixes + +- Do not skip all tags when `skip_tags` is empty (#63) +- Use root commit when --latest and there is only one tag (#59) +- Use the correct branch for codecov (#65) +- Fix `keepachangelog` config example (#66) + +### Documentation + +- Add another option of GitHub Actions (#64) +- Document timestamp format of `Release` struct (#67) + +### Miscellaneous Tasks + +- Upgrade regex dependency to fix CVE-2022-24713 +- Upgrade dependencies + ## [0.6.0] - 2022-02-12 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 89f9b72..4e37b5d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -362,7 +362,7 @@ dependencies = [ [[package]] name = "git-cliff" -version = "0.6.0" +version = "0.6.1" dependencies = [ "clap", "clap_complete", @@ -375,7 +375,7 @@ dependencies = [ [[package]] name = "git-cliff-core" -version = "0.6.0" +version = "0.6.1" dependencies = [ "config", "git-conventional", diff --git a/git-cliff-core/Cargo.toml b/git-cliff-core/Cargo.toml index 101433e..f4a7b6e 100644 --- a/git-cliff-core/Cargo.toml +++ b/git-cliff-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff-core" -version = "0.6.0" # managed by release.sh +version = "0.6.1" # managed by release.sh description = "Core library of git-cliff" authors = ["git-cliff contributors "] license = "GPL-3.0" diff --git a/git-cliff/Cargo.toml b/git-cliff/Cargo.toml index 9792cef..cb7fc3f 100644 --- a/git-cliff/Cargo.toml +++ b/git-cliff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff" -version = "0.6.0" # managed by release.sh +version = "0.6.1" # managed by release.sh description = "A highly customizable changelog generator ⛰️" authors = ["git-cliff contributors "] license = "GPL-3.0" @@ -23,7 +23,7 @@ dirs-next = "2.0.0" clap_complete = "3.1.1" [dependencies.git-cliff-core] -version = "0.6.0" # managed by release.sh +version = "0.6.1" # managed by release.sh path = "../git-cliff-core" [dependencies.clap]