Compare commits

..

No commits in common. "56d4a9f77e0e08a3383ebd2b7244164d5f1a8bff" and "f7e31f8f416cb2d5ae1af3ad4fe0ac142a6b0c8f" have entirely different histories.

2 changed files with 3 additions and 24 deletions

View File

@ -1,18 +1,6 @@
<a name="unreleased"></a> <a name="unreleased"></a>
## [Unreleased] ## [Unreleased]
<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.1530.f7e31f8"></a>
## [2023.8.23-stable.1530.f7e31f8] - 2023-08-23
### Bug Fixes ### Bug Fixes
- **changelog:** add missing task dependency - **changelog:** add missing task dependency
@ -29,8 +17,4 @@
- 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.1207.cd2f1ba...HEAD
[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.1530.f7e31f8]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stable.1207.cd2f1ba...2023.8.23-stable.1530.f7e31f8

View File

@ -13,13 +13,12 @@ MKT_GITEA_RELEASE_PROJECT ?= mktools
.PHONY: release .PHONY: release
release: release:
$(MAKE) update-changelog
git tag $(MKT_PROJECT_VERSION) git tag $(MKT_PROJECT_VERSION)
git tag $(MKT_PROJECT_SHORT_VERSION) git tag $(MKT_PROJECT_SHORT_VERSION)
git push --tags git push --tags
$(MAKE) update-changelog
$(MAKE) \ $(MAKE) \
MKT_GITEA_RELEASE_ATTACHMENTS="CHANGELOG.md" \ MKT_GITEA_RELEASE_ATTACHMENTS="CHANGELOG.md" \
MKT_GITEA_RELEASE_COMMIT_TARGET="$(MKT_PROJECT_VERSION)" \
mkt-gitea-release mkt-gitea-release
@ -29,13 +28,9 @@ clean:
.PHONY: update-changelog .PHONY: update-changelog
update-changelog: update-changelog:
$(MAKE) changelog $(MAKE) MKT_GIT_CHGLOG_PROJECT_ORG=Cadoles MKT_GIT_CHGLOG_PROJECT_NAME=mktools mkt-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 --tags
.PHONY: changelog
changelog:
$(MAKE) MKT_GIT_CHGLOG_PROJECT_ORG=Cadoles MKT_GIT_CHGLOG_PROJECT_NAME=mktools mkt-changelog
include tasks/*.mk include tasks/*.mk