Skip to content

Commit

Permalink
Update __about__ and HISTORY for sacred 0.8.2 (#787)
Browse files Browse the repository at this point in the history
  • Loading branch information
thequilo committed Dec 6, 2020
1 parent e62bb68 commit 04f2dcc
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
Release History
---------------

0.8.2 (2020-11-26)
++++++++++++++++++

Minor bugfix release that resolves some bugs for Python 3.8+ and issues with the read-only container types.

* Feature: Added support for pickling and YAML serialization to the read-only containers (#775, #737)
* Feature: Added git integration to SqlObserver (#741)
* Feature: Added support for a collection prefix in MongoObserver (#704)
* Bugfix: Fix print_config command for Python 3.8 (#719)
* Bugfix: Fix save_config command (#765)
* Bugfix: Named config updates are now distributed correctly during the configuration creation process (#769, #777)
* Bugfix: Parsing of the nvidia_smi output now also works with non-Unicode (e.g., Chinese) characters in process names (#776)
* Bugfix: Fix type annotations of MongoObserver (#762)
* Bugfix: Terminate tee on timeout. This is a workaround that prevents program crashes caused by output capturing (#740)
* Bugfix: Improve parsing of config scopes (#699, #764)
* Bugfix: Fix error tracking of ConfigErrors when raised in a config scope (#733)
* Bugfix: Made git import optional (#724)


0.8.1 (2019-11-27)
++++++++++++++++++
* Feature: added Google Cloud Storage Observer (thanks @wohlert)
Expand Down
2 changes: 1 addition & 1 deletion sacred/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

__all__ = ("__version__", "__author__", "__author_email__", "__url__")

__version__ = "0.8.1"
__version__ = "0.8.2"

__author__ = "Klaus Greff"
__author_email__ = "[email protected]"
Expand Down

0 comments on commit 04f2dcc

Please sign in to comment.