From 83479445c2af6d713128d5086ff51d2b166ed754 Mon Sep 17 00:00:00 2001 From: orhun Date: Sat, 14 Aug 2021 16:24:43 +0300 Subject: [PATCH] chore(release): prepare for v0.1.1 --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.lock | 4 ++-- git-cliff-core/Cargo.toml | 2 +- git-cliff/Cargo.toml | 4 ++-- 4 files changed, 25 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bc9089..99f220b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,26 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.1.1] - 2021-08-14 + +### Bug Fixes + +- Set the previous release when using `--latest` (#3) + +### Documentation + +- Add installation instructions for the AUR + +### Miscellaneous Tasks + +- Rename the shell completions binary +- Upgrade dependencies + +### Performance + +- Process only the last 'previous' release +- Optimize the release vector size + ## [0.1.0] - 2021-08-12 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 55c75ee..a36404b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -287,7 +287,7 @@ dependencies = [ [[package]] name = "git-cliff" -version = "0.1.0" +version = "0.1.1" dependencies = [ "git-cliff-core", "log", @@ -298,7 +298,7 @@ dependencies = [ [[package]] name = "git-cliff-core" -version = "0.1.0" +version = "0.1.1" dependencies = [ "config", "git-conventional", diff --git a/git-cliff-core/Cargo.toml b/git-cliff-core/Cargo.toml index 5d026e8..0194f64 100644 --- a/git-cliff-core/Cargo.toml +++ b/git-cliff-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff-core" -version = "0.1.0" # managed by release.sh +version = "0.1.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 71909a7..4598de5 100644 --- a/git-cliff/Cargo.toml +++ b/git-cliff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff" -version = "0.1.0" # managed by release.sh +version = "0.1.1" # managed by release.sh description = "A highly customizable changelog generator ⛰️" authors = ["git-cliff contributors "] license = "GPL-3.0" @@ -21,7 +21,7 @@ pretty_env_logger = "0.4.0" log = "0.4.14" [dependencies.git-cliff-core] -version = "0.1.0" # managed by release.sh +version = "0.1.1" # managed by release.sh path = "../git-cliff-core" [dependencies.structopt]