-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added missing change fragment * adjust license date range * add change fragment for asyncio core * regenerated changelog * bump version number * adjusted date in __about__
- Loading branch information
1 parent
ae4926c
commit 0343272
Showing
6 changed files
with
36 additions
and
5 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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
category: changed | ||
summary: "Daemon core implementation is based on `asyncio`" | ||
description: | | ||
The daemon core is now implemented based on `asyncio` instead of `threading`. | ||
This should be largely transparent outside of the daemon core itself but improves | ||
robustness, responsiveness and performance. | ||
pull requests: | ||
- 109 | ||
version: 0.13.0 |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
category: changed | ||
summary: "Configuration is processed after daemon and `asyncio` initialisation" | ||
description: | | ||
The configuration is now processed after initialising the daemon runtime. | ||
In specific, the primary `asyncio` event loop is guaranteed to be available | ||
when objects are created from the configuration. | ||
issues: | ||
- 106 | ||
pull requests: | ||
- 112 | ||
version: 0.13.0 |
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,3 +1,5 @@ | ||
- semver: 0.13.0 | ||
date: '2022-08-16' | ||
- semver: 0.12.3 | ||
date: '2021-10-29' | ||
- semver: 0.12.2 | ||
|
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 |
---|---|---|
|
@@ -14,8 +14,8 @@ | |
__summary__ = "COBalD - the Opportunistic Balancing Daemon" | ||
__url__ = "https://github.com/MatterMiners/cobald" | ||
|
||
__version__ = "0.12.3" | ||
__version__ = "0.13.0" | ||
__author__ = "Eileen Kuehn, Max Fischer" | ||
__email__ = "[email protected]" | ||
__copyright__ = "2018 - 2021 %s" % __author__ | ||
__copyright__ = "2018 - 2022 %s" % __author__ | ||
__keywords__ = "opportunistic scheduling scheduler demand feedback-loop cobald" |