Compare commits
2 Commits
56d4a9f77e
...
2f77f3e72e
Author | SHA1 | Date |
---|---|---|
wpetit | 2f77f3e72e | |
wpetit | 92c3a7e6a5 |
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -2,14 +2,17 @@
|
|||
## [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>
|
||||
## [2023.8.23-stb.1533] - 2023-08-23
|
||||
|
||||
<a name="2023.8.23-stable.1533.bec93c7"></a>
|
||||
## [2023.8.23-stable.1533.bec93c7] - 2023-08-23
|
||||
|
||||
<a name="2023.8.23-stb.1530"></a>
|
||||
## [2023.8.23-stb.1530] - 2023-08-23
|
||||
<a name="2023.8.23-stable.1533.56d4a9f"></a>
|
||||
## [2023.8.23-stable.1533.56d4a9f] - 2023-08-23
|
||||
|
||||
<a name="2023.8.23-stable.1530.f7e31f8"></a>
|
||||
## [2023.8.23-stable.1530.f7e31f8] - 2023-08-23
|
||||
|
@ -29,8 +32,9 @@
|
|||
- 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-stable.1533.bec93c7]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stb.1530...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.bec93c7]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stable.1533.56d4a9f...2023.8.23-stable.1533.bec93c7
|
||||
[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
|
||||
|
|
4
Makefile
4
Makefile
|
@ -14,7 +14,6 @@ MKT_GITEA_RELEASE_PROJECT ?= mktools
|
|||
.PHONY: release
|
||||
release:
|
||||
git tag $(MKT_PROJECT_VERSION)
|
||||
git tag $(MKT_PROJECT_SHORT_VERSION)
|
||||
git push --tags
|
||||
$(MAKE) update-changelog
|
||||
$(MAKE) \
|
||||
|
@ -32,10 +31,11 @@ update-changelog:
|
|||
$(MAKE) changelog
|
||||
git add CHANGELOG.md
|
||||
git commit -m "chore: update changelog"
|
||||
git push --tags
|
||||
git push
|
||||
|
||||
.PHONY: changelog
|
||||
changelog:
|
||||
git fetch --prune-tags
|
||||
$(MAKE) MKT_GIT_CHGLOG_PROJECT_ORG=Cadoles MKT_GIT_CHGLOG_PROJECT_NAME=mktools mkt-changelog
|
||||
|
||||
include tasks/*.mk
|
Loading…
Reference in New Issue