From 787d40b55cd821a07ee2760e228f1da386969616 Mon Sep 17 00:00:00 2001 From: Klaus Greff Date: Thu, 20 Jun 2019 16:03:01 +0200 Subject: [PATCH] Release 0.7.5 This is the final release to support Python 2.7 --- HISTORY.rst | 28 ++++++++++++++++++++++++++++ sacred/__about__.py | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index de8cebba..bc50ead4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,34 @@ Release History --------------- +0.7.5 (2019-06-20) +++++++++++++++++++ +Last release to support Python 2.7. + +* Feature: major improvements to error reporting (thanks @thequilo) +* Feature: added print_named_configs command +* Feature: added option to add metadata to artifacts (thanks @jarnoRFB) +* Feature: content type detection for artifacts (thanks @jarnoRFB) +* Feature: automatic seeding for pytorch (thanks @srossi93) +* Feature: add proxy support to telegram observer (thanks @brickerino) +* Feature: made MongoObserver fail dump dir configurable (thanks @jarnoRFB) +* Feature: added queue-based observer that better handles unreliable connections (thanks @jarnoRFB) +* Bugfix: some fixes to stdout capturing +* Bugfix: FileStorageObserver now creates directories only when starting a run (#329; thanks @thomasjpfan) +* Bugfix: Fixed config_hooks (#326; thanks @thomasjpfan) +* Bugfix: Fixed a crash when overwriting non-dict config entries with dicts (#325; thanks @thomasjpfan) +* Bugfix: fixed problem with running in conda environment (#341) +* Bugfix: numpy aware config change detection (#344) +* Bugfix: allow dependencies to be compiled libraries (thanks @jnphilipp) +* Bugfix: output colorization now works on 256 and 16 color terminals (thanks @bosr) +* Bugfix: fixed problem with tinydb observer logging (#327; thanks @michalgregor) +* Bugfix: ignore folders that have the same name as a named_config (thanks @boeddeker) +* Bugfix: setup no longer overwrites pre-configured root logger (thanks @thequilo) +* Bugfix: compatibility with tensorflow 2.0 (thanks @tarik, @gabrieldemarmiesse) +* Bugfix: fixed exception when no tee is available for stdout capturing (thanks @greg-farquhar) +* Bugfix: fixed concurrency issue with FileStorageObserver (thanks @dekuenstle) + + 0.7.4 (2018-06-12) ++++++++++++++++++ * Bugfix: fixed problem with postgres backend of SQLObserver (thanks @bensternlieb) diff --git a/sacred/__about__.py b/sacred/__about__.py index 6983d44e..c27df944 100644 --- a/sacred/__about__.py +++ b/sacred/__about__.py @@ -11,7 +11,7 @@ __all__ = ("__version__", "__author__", "__author_email__", "__url__") -__version__ = "0.7.4-onurgu" +__version__ = "0.7.5" __author__ = 'Klaus Greff' __author_email__ = 'klaus.greff@startmail.com'