Skip to content

Commit

Permalink
馃殌 RELEASE: v0.18.5 (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Feb 17, 2021
1 parent d1c5977 commit b1bde82
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## v0.18.5 - 2021-02-15

Minor improvements and bug fixes:

- 馃悰 FIX: retrieve future exception on_killed
The exception set on the future should be retrieved, otherwise it will be caught by the loop's exception handler.
- 馃悰 FIX: Clean-up process event hooks:
On Process close/cleanup event hooks are removed,
in part to not persist cyclic dependencies of hooks <-> Process.
Once a process is closed, it will also not raise an Exception if a hook tries to un-register itself (but has already been removed by the clean-up).
- 馃憣 IMPROVE: Add `Process.is_killing` property
- 馃憣 IMPROVE: remove RUNNING from allowed states of `resume`:
Since there is no `resume` method implemented for the `Running` class.
- 馃敡 MAINTAIN: Remove frozendict dependency

## v0.18.4 - 2021-01-21

Minor update, to add `py.typed` file to distribution, in accordance with [PEP-561](https://www.python.org/dev/peps/pep-0561/) [[#195]](https://github.com/aiidateam/plumpy/pull/195)
Expand Down
2 changes: 1 addition & 1 deletion plumpy/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
__version__: str = '0.18.4'
__version__: str = '0.18.5'

__all__ = ['__version__']

0 comments on commit b1bde82

Please sign in to comment.