Skip to content

Commit 076feb7

Browse files
committed
chore(release): prepare for v2.6.1
1 parent 8d10edb commit 076feb7

File tree

5 files changed

+34
-14
lines changed

5 files changed

+34
-14
lines changed

Diff for: CHANGELOG.md

+22-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
[![animation](https://raw.githubusercontent.com/orhun/git-cliff/main/website/static/img/git-cliff-anim.gif)](https://git-cliff.org)
22

3+
## [2.6.1](https://github.com/orhun/git-cliff/compare/v2.6.0..v2.6.1) - 2024-09-27
4+
5+
### 🐛 Bug Fixes
6+
7+
- *(npm)* Add missing `--use-branch-tags` flag to TS options ([#874](https://github.com/orhun/git-cliff/issues/874)) - ([e21fb1d](https://github.com/orhun/git-cliff/commit/e21fb1d3895d893fd6a371ecd48aa4632cf4231d))
8+
- *(remote)* Avoid setting multiple remotes ([#885](https://github.com/orhun/git-cliff/issues/885)) - ([a344c68](https://github.com/orhun/git-cliff/commit/a344c68238cf3bb87d4f7eb9be46e97cc964eed9))
9+
10+
### 📚 Documentation
11+
12+
- *(website)* Add conversion to pdf to tips-and-tricks ([#889](https://github.com/orhun/git-cliff/issues/889)) - ([58dc108](https://github.com/orhun/git-cliff/commit/58dc1087ed86794c2f678707f2fbb8199167b0c3))
13+
- *(website)* Add get_env filter example for GitLab CI - ([dfe4459](https://github.com/orhun/git-cliff/commit/dfe4459c5cadd465dec4ea860580ecf82b2b8860))
14+
15+
### ⚙️ Miscellaneous Tasks
16+
17+
- *(ci)* Update pedantic lint command ([#890](https://github.com/orhun/git-cliff/issues/890)) - ([8d10edb](https://github.com/orhun/git-cliff/commit/8d10edb7450aaf189fbce5f78a72274739f73ba9))
18+
- *(docker)* Disable building arm64 docker images temporarily ([#879](https://github.com/orhun/git-cliff/issues/879)) - ([cde2a8e](https://github.com/orhun/git-cliff/commit/cde2a8e3222f5e8f8bdd9ae841fd0e5c42f68846))
19+
- *(fixtures)* Build binaries using dev profile ([#886](https://github.com/orhun/git-cliff/issues/886)) - ([a394f88](https://github.com/orhun/git-cliff/commit/a394f88f1d1742dfa3d30887bcb387361de306bc))
20+
21+
## New Contributors ❤️
22+
23+
* @Krensi made their first contribution in [#889](https://github.com/orhun/git-cliff/pull/889)
24+
325
## [2.6.0](https://github.com/orhun/git-cliff/compare/v2.5.0..v2.6.0) - 2024-09-22
426

527
### ⛰️ Features
@@ -42,7 +64,6 @@
4264

4365
## New Contributors ❤️
4466

45-
* @nejcgalof made their first contribution in [#853](https://github.com/orhun/git-cliff/pull/853)
4667
* @pplmx made their first contribution in [#824](https://github.com/orhun/git-cliff/pull/824)
4768

4869
## [2.5.0](https://github.com/orhun/git-cliff/compare/v2.4.0..v2.5.0) - 2024-08-24
@@ -103,7 +124,6 @@
103124
* @oberrich made their first contribution in [#809](https://github.com/orhun/git-cliff/pull/809)
104125
* @tisonkun made their first contribution in [#599](https://github.com/orhun/git-cliff/pull/599)
105126
* @DerTiedemann made their first contribution in [#758](https://github.com/orhun/git-cliff/pull/758)
106-
* @DaniPopes made their first contribution in [#709](https://github.com/orhun/git-cliff/pull/709)
107127
* @artrz made their first contribution in [#779](https://github.com/orhun/git-cliff/pull/779)
108128
* @myl7 made their first contribution in [#776](https://github.com/orhun/git-cliff/pull/776)
109129
* @pawamoy made their first contribution in [#774](https://github.com/orhun/git-cliff/pull/774)

Diff for: Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: git-cliff-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git-cliff-core"
3-
version = "2.6.0" # managed by release.sh
3+
version = "2.6.1" # managed by release.sh
44
description = "Core library of git-cliff"
55
authors = ["git-cliff contributors <[email protected]>"]
66
license = "MIT OR Apache-2.0"

Diff for: git-cliff/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git-cliff"
3-
version = "2.6.0" # managed by release.sh
3+
version = "2.6.1" # managed by release.sh
44
description = "A highly customizable changelog generator ⛰️"
55
authors = ["git-cliff contributors <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -59,7 +59,7 @@ rand = { version = "0.8.4", optional = true }
5959
url.workspace = true
6060

6161
[dependencies.git-cliff-core]
62-
version = "2.6.0" # managed by release.sh
62+
version = "2.6.1" # managed by release.sh
6363
path = "../git-cliff-core"
6464

6565
[dev-dependencies]

Diff for: npm/git-cliff/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "git-cliff",
3-
"version": "2.6.0",
3+
"version": "2.6.1",
44
"description": "A highly customizable Changelog Generator that follows Conventional Commit specifications ⛰️",
55
"type": "module",
66
"main": "lib/cjs/index.d.cts",
@@ -91,12 +91,12 @@
9191
"typescript-eslint": "^8.6.0"
9292
},
9393
"optionalDependencies": {
94-
"git-cliff-darwin-arm64": "2.6.0",
95-
"git-cliff-darwin-x64": "2.6.0",
96-
"git-cliff-linux-arm64": "2.6.0",
97-
"git-cliff-linux-x64": "2.6.0",
98-
"git-cliff-windows-arm64": "2.6.0",
99-
"git-cliff-windows-x64": "2.6.0"
94+
"git-cliff-darwin-arm64": "2.6.1",
95+
"git-cliff-darwin-x64": "2.6.1",
96+
"git-cliff-linux-arm64": "2.6.1",
97+
"git-cliff-linux-x64": "2.6.1",
98+
"git-cliff-windows-arm64": "2.6.1",
99+
"git-cliff-windows-x64": "2.6.1"
100100
},
101101
"packageManager": "[email protected]",
102102
"publishConfig": {

0 commit comments

Comments
 (0)