From a8b53789e4bd69dc43252f2df9862b910030b1b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Sat, 2 Oct 2021 00:50:33 +0300 Subject: [PATCH] chore(release): prepare for v0.4.0 --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ Cargo.lock | 4 ++-- git-cliff-core/Cargo.toml | 2 +- git-cliff/Cargo.toml | 4 ++-- 4 files changed, 42 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83a918a..c5b2866 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,43 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.4.0] - 2021-10-01 + +### Bug Fixes + +- Update lychee arguments to skip checking files +- Remove tags from the base image names +- Remove only the leading "v" from tags (#18) + +### Documentation + +- Add scope-sorted example (#16) +- Add raw/rendered output for scoped-sorted example +- Add packaging status badge to installation section +- Mention the signing key for binary releases (#17) +- Add "build from source" section to README.md + +### Features + +- Add `--sort` argument for sorting commits (#15) + +### Miscellaneous Tasks + +- Set a version for the checkout action +- Update the runner to ubuntu-20.04 +- Use cache for docker builds +- Use docker meta for tagging for GHCR +- Extend the tags for docker meta +- Rename the GHCR package due to legacy reasons +- Specify the latest tag explicitly +- Use explicit image name for docker automated builds +- Use docker.yml workflow for CI/CD +- Upgrade dependencies + +### Styling + +- Fix the newline issues in scoped-sorted example + ## [0.3.0] - 2021-09-10 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index d8d75c7..8322fce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -327,7 +327,7 @@ dependencies = [ [[package]] name = "git-cliff" -version = "0.3.0" +version = "0.4.0" dependencies = [ "dirs-next", "git-cliff-core", @@ -339,7 +339,7 @@ dependencies = [ [[package]] name = "git-cliff-core" -version = "0.3.0" +version = "0.4.0" dependencies = [ "config", "git-conventional", diff --git a/git-cliff-core/Cargo.toml b/git-cliff-core/Cargo.toml index 4745bfd..12e0a74 100644 --- a/git-cliff-core/Cargo.toml +++ b/git-cliff-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff-core" -version = "0.3.0" # managed by release.sh +version = "0.4.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 5d8fc74..fd10df6 100644 --- a/git-cliff/Cargo.toml +++ b/git-cliff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff" -version = "0.3.0" # managed by release.sh +version = "0.4.0" # managed by release.sh description = "A highly customizable changelog generator ⛰️" authors = ["git-cliff contributors "] license = "GPL-3.0" @@ -22,7 +22,7 @@ log = "0.4.14" dirs-next = "2.0.0" [dependencies.git-cliff-core] -version = "0.3.0" # managed by release.sh +version = "0.4.0" # managed by release.sh path = "../git-cliff-core" [dependencies.structopt]