Skip to content

Commit

Permalink
chore: release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mishamyrt committed Jul 12, 2024
1 parent dbdcbe6 commit a6bc83a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog][],
and this project adheres to [Semantic Versioning][].


## [v1.0.1](https://github.com/mishamyrt/runon/releases/tag/v1.0.1) - 2024-07-12

## [v1.0.0](https://github.com/mishamyrt/runon/releases/tag/v1.0.0) - 2024-07-12
### Bug Fixes
- improve target handler search
Expand Down Expand Up @@ -69,4 +71,5 @@ and this project adheres to [Semantic Versioning][].

[keep a changelog]: https://keepachangelog.com/en/1.0.0/
[semantic versioning]: https://semver.org/spec/v2.0.0.html
[Unreleased]: https://github.com/mishamyrt/runon/compare/v1.0.0...HEAD
[Unreleased]: https://github.com/mishamyrt/runon/compare/v1.0.1...HEAD
[v1.0.1]: https://github.com/mishamyrt/runon/compare/v1.0.0...v1.0.1
16 changes: 11 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION := 1.0.0
VERSION := 1.0.1
ENTRYPOINT_SCRIPT_FILE := scripts/runon.bash
BUILD_INFO_FILE := Sources/BuildInfo.swift
BUILD_INFO_TEMPLATE := Sources/BuildInfo.template.swift
Expand Down Expand Up @@ -45,10 +45,16 @@ install: ## install runon to the system
test: generate ## run tests
swift test

.PHONY: CHANGELOG.md
CHANGELOG.md:
git-chglog -o CHANGELOG.md

.PHONY: setup
setup:
swift package resolve

.PHONY: release
publish:
git tag "v${VERSION}"
git chglog -o CHANGELOG.md
git add Makefile
git add CHANGELOG.md
git commit -m "chore: release v${VERSION}"
git push
git push --tags

0 comments on commit a6bc83a

Please sign in to comment.