Skip to content

Commit

Permalink
chore(release): prepare for v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Apr 10, 2024
1 parent 6ba6809 commit d53ba65
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 13 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion git-cliff-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions git-cliff/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -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]
Expand Down
14 changes: 7 additions & 7 deletions npm/git-cliff/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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": [
Expand Down
1 change: 0 additions & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit d53ba65

Please sign in to comment.