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"