From 761669eb575cd3195554e2a5c680c62bcee4f99b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Sat, 12 Feb 2022 22:06:37 +0300 Subject: [PATCH] chore(release): prepare for v0.6.0 --- CHANGELOG.md | 47 +++++++++++++++++++++++++++++++++++++++ Cargo.lock | 4 ++-- git-cliff-core/Cargo.toml | 2 +- git-cliff/Cargo.toml | 4 ++-- 4 files changed, 52 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d8dca8..f1e8a35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,53 @@ All notable changes to this project will be documented in this file. +## [0.6.0] - 2022-02-12 + +### Bug Fixes + +- Only drop previous releases if skipped (#44) +- Run clippy from nightly toolchain +- Update tests about optional config values +- Set the previous release when using `--unreleased` (#47) +- Lower the priority of global configuration file (#51) +- Update the download link of latest grcov release +- Use the correct tar command for extracting grcov archive +- Update grcov download command +- Update custom error tests + +### Documentation + +- Update template contexts about link_parsers +- Add minimal example +- Update copyright years + +### Features + +- Add `link_parsers` for parsing/extracting links (#42) +- Make the `git` section optional (#45) +- Make the `changelog` section optional (#45) +- [**breaking**] Use conventional commit body to check against commit parsers +- [**breaking**] Replace --topo-order by --date-order (#58) + +### Miscellaneous Tasks + +- Update arg parsing to clap v3 (#49) +- Upgrade dependencies +- Bump the Rust version in Dockerfile +- Run cargo-audit for checking vulnerabilities +- Update the runner to macos-11 + +### Refactor + +- Apply clippy suggestions +- [**breaking**] Change the default value of `trim` to `true` +- Unify serde and serde_derive using derive feature (#57) + +### Styling + +- Update the styling +- Comply with MD022 and fix minor typos (#61) + ## [0.5.0] - 2021-12-15 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index f04f5bf..d4f7253 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -355,7 +355,7 @@ dependencies = [ [[package]] name = "git-cliff" -version = "0.5.0" +version = "0.6.0" dependencies = [ "clap", "clap_complete", @@ -368,7 +368,7 @@ dependencies = [ [[package]] name = "git-cliff-core" -version = "0.5.0" +version = "0.6.0" dependencies = [ "config", "git-conventional", diff --git a/git-cliff-core/Cargo.toml b/git-cliff-core/Cargo.toml index b88f133..ad51cef 100644 --- a/git-cliff-core/Cargo.toml +++ b/git-cliff-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff-core" -version = "0.5.0" # managed by release.sh +version = "0.6.0" # 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 315a90c..1eea05b 100644 --- a/git-cliff/Cargo.toml +++ b/git-cliff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff" -version = "0.5.0" # managed by release.sh +version = "0.6.0" # 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.0.6" [dependencies.git-cliff-core] -version = "0.5.0" # managed by release.sh +version = "0.6.0" # managed by release.sh path = "../git-cliff-core" [dependencies.clap]