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.1

This commit is contained in:
Orhun Parmaksız 2022-03-13 15:53:12 +03:00
parent d68eb120c0
commit b0201c458e
No known key found for this signature in database
GPG Key ID: B928720AEC532117
4 changed files with 24 additions and 5 deletions

View File

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

4
Cargo.lock generated
View File

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

View File

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

View File

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