diff --git a/CHANGELOG.md b/CHANGELOG.md index b803ee76..00d888ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## v0.18.6 - 2021-02-24 + +👌 IMPROVE: Catch state change broadcast timeout + +When using an RMQ communicator, the broadcast can timeout on heavy loads to RMQ +(for example see ). +This broadcast is not critical to the running of the process, +and so a timeout should not except it. + +Also ensure the process PID is included in all log messages. + ## v0.18.5 - 2021-02-15 Minor improvements and bug fixes: diff --git a/plumpy/version.py b/plumpy/version.py index e23829ec..e3b3756e 100644 --- a/plumpy/version.py +++ b/plumpy/version.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- -__version__: str = '0.18.5' +__version__: str = '0.18.6' __all__ = ['__version__']