From 04f2dcc8b07b31acb07e5de6415cbd5cdda6be06 Mon Sep 17 00:00:00 2001 From: Thilo von Neumann Date: Sun, 6 Dec 2020 20:11:47 +0100 Subject: [PATCH] Update __about__ and HISTORY for sacred 0.8.2 (#787) --- HISTORY.rst | 19 +++++++++++++++++++ sacred/__about__.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 19370d81..140c7cc1 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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) diff --git a/sacred/__about__.py b/sacred/__about__.py index d29e7fc7..e9a99a6b 100644 --- a/sacred/__about__.py +++ b/sacred/__about__.py @@ -7,7 +7,7 @@ __all__ = ("__version__", "__author__", "__author_email__", "__url__") -__version__ = "0.8.1" +__version__ = "0.8.2" __author__ = "Klaus Greff" __author_email__ = "klaus.greff@startmail.com"