Skip to content

Commit

Permalink
Merge pull request #78 from MatterMiners/release-0.12.1
Browse files Browse the repository at this point in the history
Release 0.12.1
  • Loading branch information
maxfischer2781 authored Apr 15, 2020
2 parents fe8885e + 2569149 commit a5b5854
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
7 changes: 6 additions & 1 deletion docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Created by log.py at 2020-02-26, command
.. Created by log.py at 2020-04-15, command
'/Users/mfischer/PycharmProjects/cobald/venv/lib/python3.7/site-packages/change/__main__.py log docs/source/changes compile --output docs/source/changelog.rst'
based on the format of 'https://keepachangelog.com/'
#########
Expand All @@ -8,6 +8,11 @@ ChangeLog
0.12 Series
===========

Version [0.12.1] - 2020-04-15
+++++++++++++++++++++++++++++

* **[Fixed]** fallback for fitness of WeightedComposite depends on supply

Version [0.12.0] - 2020-02-26
+++++++++++++++++++++++++++++

Expand Down
7 changes: 4 additions & 3 deletions docs/source/changes/77.weighted_fallback.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
category: changed
category: fixed
summary: "fallback for fitness of WeightedComposite depends on supply"
description: |
Computing the fitness of :py:class:`~cobald.composite.weighted.WeightedComposite`
is undefined whenever its ``weight`` is zero. The fallback previously unconditionally
asserted perfect fitness -- this is not appropriate for the new weights added in #67.
With this change, perfect fitness is only assumed when the supply is zero, meaning
that fitness is truly unknown. In any other case, the actual fitness is used.
pull requests:
- 77
issues:
- 75
pull requests:
- 77
version: 0.12.1
2 changes: 2 additions & 0 deletions docs/source/changes/versions.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- semver: 0.12.1
date: '2020-04-15'
- semver: 0.12.0
date: '2020-02-26'
- semver: 0.11.0
Expand Down
4 changes: 2 additions & 2 deletions src/cobald/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
__summary__ = "COBalD - the Opportunistic Balancing Daemon"
__url__ = "https://github.com/MatterMiners/cobald"

__version__ = "0.12.0"
__version__ = "0.12.1"
__author__ = "Eileen Kuehn, Max Fischer"
__email__ = "mainekuehn@gmail.com"
__copyright__ = "2018 - 2019 %s" % __author__
__copyright__ = "2018 - 2020 %s" % __author__
__keywords__ = "opportunistic scheduling scheduler demand feedback-loop cobald"

0 comments on commit a5b5854

Please sign in to comment.