forked from mec07/rununtil
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make work with kaluza tech and changelog-tool (#1)
- Loading branch information
Showing
4 changed files
with
47 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,36 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
# Change Log | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
[Unreleased]: https://github.com/mec07/rununtil/compare/v0.2.0...HEAD | ||
## [0.2.1] - 2020-01-28 | ||
|
||
### Changed | ||
|
||
- Migrate to kaluza-tech | ||
|
||
## [0.2.0] - 2019-06-12 | ||
[0.2.0]: https://github.com/mec07/rununtil/compare/v0.1.0...v0.2.0 | ||
|
||
### Fixed | ||
|
||
- There was a problem with sending a kill signal to a nonblocking main function. This has been fixed by providing the CancelAll method. | ||
|
||
### Changed | ||
|
||
- Deprecate: functions KillSignal, Signals, and Killed | ||
- Replace them with: AwaitKillSignal, AwaitKillSignals and CancelAll | ||
|
||
### Fixed | ||
- There was a problem with sending a kill signal to a nonblocking main function. | ||
This has been fixed by providing the CancelAll method. | ||
|
||
## [0.1.0] - 2019-06-12 | ||
[0.1.0]: https://github.com/mec07/rununtil/compare/v0.0.1...v0.1.0 | ||
### Changed | ||
- There are now RunnerFunc and ShutdownFunc function types to clarify the usage of this library (backwards incompatible change) | ||
|
||
### Added | ||
|
||
- Implemented the rununtil.Killed method, which allows you to test a function that uses rununtil.KillSignal | ||
|
||
### Changed | ||
|
||
- There are now RunnerFunc and ShutdownFunc function types to clarify the usage of this library (backwards incompatible change) | ||
|
||
## [0.0.1] - 2019-06-05 | ||
[0.0.1]: https://github.com/mec07/rununtil/releases/tag/v0.0.1 | ||
### Added | ||
- initial commit of rununtil library | ||
|
||
### Added | ||
|
||
- initial commit of rununtil library |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module github.com/mec07/rununtil | ||
module github.com/kaluza-tech/rununtil | ||
|
||
go 1.12 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters