1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-11-24 18:04:25 +03:00

chore(release): prepare for v2.2.1

This commit is contained in:
Orhun Parmaksız 2024-04-11 01:22:47 +03:00
parent 6ba6809ea1
commit d53ba6501e
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90
6 changed files with 28 additions and 13 deletions

View File

@ -1,5 +1,21 @@
[![animation](https://raw.githubusercontent.com/orhun/git-cliff/main/website/static/img/git-cliff-anim.gif)](https://git-cliff.org)
## [2.2.1](https://github.com/orhun/git-cliff/compare/v2.2.0..v2.2.1) - 2024-04-10
### 🐛 Bug Fixes
- *(npm)* Include the proper files in the npm tarball ([#594](https://github.com/orhun/git-cliff/issues/594)) - ([800c896](https://github.com/orhun/git-cliff/commit/800c8964933deda12ef17a27c566dde430a7cae9))
### 📚 Documentation
- *(readme)* Mention git-changelog-command-line tool ([#589](https://github.com/orhun/git-cliff/issues/589)) - ([d65b443](https://github.com/orhun/git-cliff/commit/d65b4433ce784a713355f47b30096031c7dc05f4))
- *(website)* Add GITHUB_REPO variable to GitHub action ([#597](https://github.com/orhun/git-cliff/issues/597)) - ([3b74254](https://github.com/orhun/git-cliff/commit/3b742548cccf7a55bc071a7614fa224b41078aa2))
- *(website)* Update release date - ([45132da](https://github.com/orhun/git-cliff/commit/45132da64284eb60330021ab8ca6d1db07206610))
### ⚙️ Miscellaneous Tasks
- *(ci)* Remove audit check - ([6ba6809](https://github.com/orhun/git-cliff/commit/6ba6809ea1ff9b34f192b387e77da06cf0570606))
## [2.2.0](https://github.com/orhun/git-cliff/compare/v2.1.2..v2.2.0) - 2024-03-30
### ⛰️ Features

4
Cargo.lock generated
View File

@ -715,7 +715,7 @@ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
[[package]]
name = "git-cliff"
version = "2.2.0"
version = "2.2.1"
dependencies = [
"clap",
"clap_complete",
@ -736,7 +736,7 @@ dependencies = [
[[package]]
name = "git-cliff-core"
version = "2.2.0"
version = "2.2.1"
dependencies = [
"config",
"dirs",

View File

@ -1,6 +1,6 @@
[package]
name = "git-cliff-core"
version = "2.2.0" # managed by release.sh
version = "2.2.1" # managed by release.sh
description = "Core library of git-cliff"
authors = ["git-cliff contributors <git-cliff@protonmail.com>"]
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "git-cliff"
version = "2.2.0" # managed by release.sh
version = "2.2.1" # managed by release.sh
description = "A highly customizable changelog generator ⛰️"
authors = ["git-cliff contributors <git-cliff@protonmail.com>"]
license = "MIT OR Apache-2.0"
@ -45,7 +45,7 @@ indicatif = { version = "0.17.8", optional = true }
env_logger = "0.10.2"
[dependencies.git-cliff-core]
version = "2.2.0" # managed by release.sh
version = "2.2.1" # managed by release.sh
path = "../git-cliff-core"
[dev-dependencies]

View File

@ -1,6 +1,6 @@
{
"name": "git-cliff",
"version": "2.2.0",
"version": "2.2.1",
"description": "A highly customizable Changelog Generator that follows Conventional Commit specifications ⛰️",
"type": "module",
"main": "lib/cjs/index.d.cts",
@ -88,12 +88,12 @@
"typescript": "^5.3.3"
},
"optionalDependencies": {
"git-cliff-darwin-arm64": "2.2.0",
"git-cliff-darwin-x64": "2.2.0",
"git-cliff-linux-arm64": "2.2.0",
"git-cliff-linux-x64": "2.2.0",
"git-cliff-windows-arm64": "2.2.0",
"git-cliff-windows-x64": "2.2.0"
"git-cliff-darwin-arm64": "2.2.1",
"git-cliff-darwin-x64": "2.2.1",
"git-cliff-linux-arm64": "2.2.1",
"git-cliff-linux-x64": "2.2.1",
"git-cliff-windows-arm64": "2.2.1",
"git-cliff-windows-x64": "2.2.1"
},
"eslintConfig": {
"extends": [

View File

@ -16,7 +16,6 @@ msg="# managed by release.sh"
sed -E -i "s/^version = .* $msg$/version = \"${1#v}\" $msg/" git-cliff*/Cargo.toml
sed -E -i "s/\"version\": \".+\"/\"version\": \"${1#v}\"/" npm/git-cliff/package.json
sed -E -i "s/\"(git-cliff-.+)\": \".+\"/\"\1\": \"${1#v}\"/g" npm/git-cliff/package.json
pushd npm/git-cliff && yarn install && popd
# update the changelog
cargo run -- --config cliff.toml --tag "$1" >CHANGELOG.md
git add -A && git commit -m "chore(release): prepare for $1"