1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-08-15 18:00:52 +03:00

chore(release): prepare for v0.6.0

This commit is contained in:
Orhun Parmaksız 2022-02-12 22:06:37 +03:00
parent 960cb4ac6f
commit 761669eb57
No known key found for this signature in database
GPG Key ID: B928720AEC532117
4 changed files with 52 additions and 5 deletions

View File

@ -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

4
Cargo.lock generated
View File

@ -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",

View File

@ -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 <git-cliff@protonmail.com>"]
license = "GPL-3.0"

View File

@ -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 <git-cliff@protonmail.com>"]
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]