From 03ee76fc1d1b0f6febb2548d02baf4e2121a1a8c Mon Sep 17 00:00:00 2001 From: Johannes Hoppe Date: Wed, 10 Oct 2018 16:49:57 +0200 Subject: [PATCH] Release 0.6 - 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 --- CHANGES.rst | 8 ++++++++ hirefire/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) 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'