From 996333611d4cf94b1a2e08c45b4590941838a486 Mon Sep 17 00:00:00 2001 From: Arthur Pastel Date: Fri, 22 Nov 2024 16:49:45 +0100 Subject: [PATCH] fix: git-cliff configuration for changelog generation --- CHANGELOG.md | 13 ++++++++++++- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ff6e14..ba0a1b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ +## [Unreleased] + +### 🐛 Bug Fixes +- Git-cliff configuration for changelog generation by @art049 + +### ⚙️ Internals +- Bump pre-commit action by @art049 +- Fix changelog markdown template whitespaces by @art049 + + ## [3.2.0] - 2024-11-22 ### 🚀 Features @@ -19,7 +29,7 @@ - Improve string interpolation by @fargito ### ⚙️ Internals -- Configure git-cliff for changelog generation +- Configure git-cliff for changelog generation by @art049 - Add rust settings by @fargito ## New Contributors @@ -267,6 +277,7 @@ * @art049 made their first contribution * @adriencaccia made their first contribution in [#6](https://github.com/CodSpeedHQ/runner/pull/6) +[unreleased]: https://github.com/CodSpeedHQ/runner/compare/v3.2.0..HEAD [3.2.0]: https://github.com/CodSpeedHQ/runner/compare/v3.1.0..v3.2.0 [3.1.0]: https://github.com/CodSpeedHQ/runner/compare/v3.0.0..v3.1.0 [3.0.0]: https://github.com/CodSpeedHQ/runner/compare/v2.4.3..v3.0.0 diff --git a/Cargo.toml b/Cargo.toml index 8941e02..d183ee7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,7 +55,7 @@ insta = { version = "1.29.0", features = ["json", "redactions"] } [workspace.metadata.release] sign-tag = true sign-commit = true -pre-release-hook = ["git", "cliff", "-o", "CHANGELOG.md", "--tag", "v{{version}}"] +pre-release-hook = ["git", "cliff", "-o", "CHANGELOG.md", "--tag", "v{{version}}", "--github-token", "{{env.GITHUB_TOKEN}}"] [profile.dist] inherits = "release"