Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump 0.8.5 #922

Merged
merged 3 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[bumpversion]
current_version = 0.8.5
commit = True
tag = True
tag_name = {new_version}

[bumpversion:file:sacred/__about__.py]
12 changes: 11 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
Release History
---------------

0.8.5 (2023-11-13)
++++++++++++++++++

Minor release with a few small fixes.

* Feature: Add setting for the default heartbeat interval
* Bugfix: Don't ignore non-loadable classes in config files (#902, thanks @ernestum)
* Bugfix: Fix an import error that made conda-forge build fail (#921, thanks @n-gao)
* Doc: Update CDE tool that doesn't exist anymore and fix starter example (#905, #906, thanks @zhimin-z)

0.8.4 (2023-01-25)
++++++++
++++++++++++++++++

Minor release with a few small fixes.

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.4"
__version__ = "0.8.5"

__author__ = "Klaus Greff"
__author_email__ = "klaus.greff@startmail.com"
Expand Down