Skip to content

Commit 1939369

Browse files
github-actions[bot]web-flowTakishima
authored
Release version v1.9.1 (#83)
* Preparing release v1.9.1 * Update CHANGELOG * Update parse-changelog version * Update format GitHub workflow --------- Co-authored-by: github-actions[bot] <noreply@github.com> Co-authored-by: Damien Nguyen <ngn.damien@gmail.com>
1 parent 0f65f73 commit 1939369

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/format.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,23 @@ jobs:
2222
- name: Installing parse-changelog
2323
env:
2424
target: x86_64-unknown-linux-musl
25-
parse_changelog_tag: v0.5.1
25+
parse_changelog_tag: v0.5.4
2626
source_url: https://github.com/taiki-e/parse-changelog/releases/download
2727
run: |
2828
curl -LsSf "${source_url}/${parse_changelog_tag}/parse-changelog-${target}.tar.gz" | tar xzf -
2929
- name: Extract version from branch name (for release branches)
3030
if: github.event_name == 'pull_request' && startsWith(github.event.pull_request.head.ref, 'release/')
3131
run: |
3232
BRANCH_NAME="${{ github.event.pull_request.head.ref }}"
33-
VERSION=${BRANCH_NAME#release/}
33+
VERSION=${BRANCH_NAME#release/v}
3434
echo "RELEASE_VERSION=$VERSION" >> $GITHUB_ENV
3535
git tag v${RELEASE_VERSION}
3636
3737
- name: Extract version from branch name (for hotfix branches)
3838
if: github.event_name == 'pull_request' && startsWith(github.event.pull_request.head.ref, 'hotfix/')
3939
run: |
4040
BRANCH_NAME="${{ github.event.pull_request.head.ref }}"
41-
VERSION=${BRANCH_NAME#hotfix/}
41+
VERSION=${BRANCH_NAME#hotfix/v}
4242
echo "RELEASE_VERSION=$VERSION" >> $GITHUB_ENV
4343
git tag v${RELEASE_VERSION}
4444

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v1.9.1] - 2023-06-18
11+
1012
### Changed
1113

1214
- Add proper support for clang-format "linter" mode (ie. `--dry-run`)
@@ -307,7 +309,7 @@ Initial release with support for:
307309
- clang-tidy
308310
- cppcheck
309311

310-
[unreleased]: https://github.com/Takishima/cmake-pre-commit-hooks/compare/v1.9.0...HEAD
312+
[unreleased]: https://github.com/Takishima/cmake-pre-commit-hooks/compare/v1.9.1...HEAD
311313
[v1.0.0]: https://github.com/Takishima/cmake-pre-commit-hooks/compare/20b1113bf223273cda31a14a82c9d573a342de4a...v1.0.0
312314
[v1.0.1]: https://github.com/Takishima/cmake-pre-commit-hooks/compare/v1.0.0...v1.0.1
313315
[v1.1.0]: https://github.com/Takishima/cmake-pre-commit-hooks/compare/v1.0.1...v1.1.0
@@ -325,3 +327,4 @@ Initial release with support for:
325327
[v1.8.0]: https://github.com/Takishima/cmake-pre-commit-hooks/compare/v1.7.0...v1.8.0
326328
[v1.8.1]: https://github.com/Takishima/cmake-pre-commit-hooks/compare/v1.8.0...v1.8.1
327329
[v1.9.0]: https://github.com/Takishima/cmake-pre-commit-hooks/compare/v1.8.1...v1.9.0
330+
[v1.9.1]: https://github.com/Takishima/cmake-pre-commit-hooks/compare/v1.9.0...v1.9.1

0 commit comments

Comments
 (0)