Compare commits

...

2 Commits

Author SHA1 Message Date
wpetit 2f77f3e72e chore: update changelog
Cadoles/mktools/pipeline/head There was a failure building this commit Details
2023-08-23 15:40:52 -06:00
wpetit 92c3a7e6a5 chore: prune local tags before generating changelog 2023-08-23 15:40:36 -06:00
2 changed files with 11 additions and 7 deletions

View File

@ -2,14 +2,17 @@
## [Unreleased] ## [Unreleased]
<a name="2023.8.23-stable.1540.92c3a7e"></a>
## [2023.8.23-stable.1540.92c3a7e] - 2023-08-23
<a name="2023.8.23-stb.1533"></a> <a name="2023.8.23-stb.1533"></a>
## [2023.8.23-stb.1533] - 2023-08-23 ## [2023.8.23-stb.1533] - 2023-08-23
<a name="2023.8.23-stable.1533.bec93c7"></a> <a name="2023.8.23-stable.1533.bec93c7"></a>
## [2023.8.23-stable.1533.bec93c7] - 2023-08-23 ## [2023.8.23-stable.1533.bec93c7] - 2023-08-23
<a name="2023.8.23-stb.1530"></a> <a name="2023.8.23-stable.1533.56d4a9f"></a>
## [2023.8.23-stb.1530] - 2023-08-23 ## [2023.8.23-stable.1533.56d4a9f] - 2023-08-23
<a name="2023.8.23-stable.1530.f7e31f8"></a> <a name="2023.8.23-stable.1530.f7e31f8"></a>
## [2023.8.23-stable.1530.f7e31f8] - 2023-08-23 ## [2023.8.23-stable.1530.f7e31f8] - 2023-08-23
@ -29,8 +32,9 @@
- initial commit - initial commit
[Unreleased]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stb.1533...HEAD [Unreleased]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stable.1540.92c3a7e...HEAD
[2023.8.23-stable.1540.92c3a7e]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stb.1533...2023.8.23-stable.1540.92c3a7e
[2023.8.23-stb.1533]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stable.1533.bec93c7...2023.8.23-stb.1533 [2023.8.23-stb.1533]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stable.1533.bec93c7...2023.8.23-stb.1533
[2023.8.23-stable.1533.bec93c7]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stb.1530...2023.8.23-stable.1533.bec93c7 [2023.8.23-stable.1533.bec93c7]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stable.1533.56d4a9f...2023.8.23-stable.1533.bec93c7
[2023.8.23-stb.1530]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stable.1530.f7e31f8...2023.8.23-stb.1530 [2023.8.23-stable.1533.56d4a9f]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stable.1530.f7e31f8...2023.8.23-stable.1533.56d4a9f
[2023.8.23-stable.1530.f7e31f8]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stable.1207.cd2f1ba...2023.8.23-stable.1530.f7e31f8 [2023.8.23-stable.1530.f7e31f8]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stable.1207.cd2f1ba...2023.8.23-stable.1530.f7e31f8

View File

@ -14,7 +14,6 @@ MKT_GITEA_RELEASE_PROJECT ?= mktools
.PHONY: release .PHONY: release
release: release:
git tag $(MKT_PROJECT_VERSION) git tag $(MKT_PROJECT_VERSION)
git tag $(MKT_PROJECT_SHORT_VERSION)
git push --tags git push --tags
$(MAKE) update-changelog $(MAKE) update-changelog
$(MAKE) \ $(MAKE) \
@ -32,10 +31,11 @@ update-changelog:
$(MAKE) changelog $(MAKE) changelog
git add CHANGELOG.md git add CHANGELOG.md
git commit -m "chore: update changelog" git commit -m "chore: update changelog"
git push --tags git push
.PHONY: changelog .PHONY: changelog
changelog: changelog:
git fetch --prune-tags
$(MAKE) MKT_GIT_CHGLOG_PROJECT_ORG=Cadoles MKT_GIT_CHGLOG_PROJECT_NAME=mktools mkt-changelog $(MAKE) MKT_GIT_CHGLOG_PROJECT_ORG=Cadoles MKT_GIT_CHGLOG_PROJECT_NAME=mktools mkt-changelog
include tasks/*.mk include tasks/*.mk