From 599c698ac72c2f24039b9f8672bae2b8c818b83f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Tue, 20 Sep 2022 18:36:47 +0200 Subject: [PATCH] chore(release): prepare for v0.9.1 --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.lock | 4 ++-- git-cliff-core/Cargo.toml | 2 +- git-cliff/Cargo.toml | 4 ++-- 4 files changed, 24 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b74090e..d26467b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ All notable changes to this project will be documented in this file. +## [0.9.1] - 2022-09-20 + +### Bug Fixes + +- Configure git safe.directory for Docker image ([#108](https://github.com/orhun/git-cliff/issues/108)) + +### Miscellaneous Tasks + +- Remove ansi_term dependency for fixing RUSTSEC-2021-0139 +- Upgrade dependencies + +### Refactor + +- Apply clippy suggestions + +### Styling + +- Update styling for with-commit example + ## [0.9.0] - 2022-08-16 ### Documentation diff --git a/Cargo.lock b/Cargo.lock index 436b6b6..8d3cda3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -424,7 +424,7 @@ dependencies = [ [[package]] name = "git-cliff" -version = "0.9.0" +version = "0.9.1" dependencies = [ "clap", "clap_complete", @@ -439,7 +439,7 @@ dependencies = [ [[package]] name = "git-cliff-core" -version = "0.9.0" +version = "0.9.1" dependencies = [ "config", "git-conventional", diff --git a/git-cliff-core/Cargo.toml b/git-cliff-core/Cargo.toml index cfdbfe9..772b22d 100644 --- a/git-cliff-core/Cargo.toml +++ b/git-cliff-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff-core" -version = "0.9.0" # managed by release.sh +version = "0.9.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 ce2910b..1116305 100644 --- a/git-cliff/Cargo.toml +++ b/git-cliff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff" -version = "0.9.0" # managed by release.sh +version = "0.9.1" # managed by release.sh description = "A highly customizable changelog generator ⛰️" authors = ["git-cliff contributors "] license = "GPL-3.0" @@ -33,7 +33,7 @@ clap_complete = "3.2.5" clap_mangen = "0.1.11" [dependencies.git-cliff-core] -version = "0.9.0" # managed by release.sh +version = "0.9.1" # managed by release.sh path = "../git-cliff-core" [dependencies.clap]