diff --git a/CHANGES.rst b/CHANGES.rst index d033e80d..34854185 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,11 @@ +0.6 (2018-10-10 +--------------- + +- Use concurrent futures to reduce blocking IO (#37) +- Add a test suite (#41) +- Fix RabbitMQ connection `TimeoutError` (#42). + Acquire and dispose broker connection per request + 0.5 (2017-01-20) ---------------- diff --git a/hirefire/__init__.py b/hirefire/__init__.py index 5a6f84c5..27fda16b 100644 --- a/hirefire/__init__.py +++ b/hirefire/__init__.py @@ -1 +1 @@ -__version__ = '0.5' +__version__ = '0.6'