From e4e5fd8c6c0a6f365ae9fe670fb691510f93be4c Mon Sep 17 00:00:00 2001 From: Thilo von Neumann Date: Tue, 26 Nov 2024 08:14:46 +0100 Subject: [PATCH] Version bump 0.8.7 (#937) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update history for 0.8.7 * Bump version: 0.8.6 → 0.8.7 --- .bumpversion.cfg | 2 +- HISTORY.rst | 8 ++++++++ sacred/__about__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 790289e2..4f788487 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.6 +current_version = 0.8.7 commit = True tag = True tag_name = {new_version} diff --git a/HISTORY.rst b/HISTORY.rst index 4ec38be3..fa2af244 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,14 @@ Release History --------------- +0.8.7 (2024-11-26) +++++++++++++++++++ + +Minor bugfix release, fixing an issue with the numpy 2.0 compatible changes from last release. + +* Fix: Restore old behavior of is_different (#933, thanks @n-gao) +* Doc: Add Sacred to Gurubase (#935, @kursataktas ) + 0.8.6 (2024-08-26) ++++++++++++++++++ diff --git a/sacred/__about__.py b/sacred/__about__.py index d21e245c..b3feb6e4 100644 --- a/sacred/__about__.py +++ b/sacred/__about__.py @@ -7,7 +7,7 @@ __all__ = ("__version__", "__author__", "__author_email__", "__url__") -__version__ = "0.8.6" +__version__ = "0.8.7" __author__ = "Klaus Greff" __author_email__ = "klaus.greff@startmail.com"