From 00dd2c7409b1dbb71d2a2898c86b2d0c8f6905c4 Mon Sep 17 00:00:00 2001 From: Dana Powers Date: Fri, 9 Feb 2018 00:46:35 -0800 Subject: [PATCH] Patch Release 1.4.1 (#1376) --- CHANGES.md | 9 +++++++++ docs/changelog.rst | 11 +++++++++++ kafka/version.py | 2 +- 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 2922023b4..15489344e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,12 @@ +# 1.4.1 (Feb 9, 2018) + +Bugfixes +* Fix consumer poll stuck error when no available partition (ckyoog #1375) +* Increase some integration test timeouts (dpkp #1374) +* Use raw in case string overriden (jeffwidman #1373) +* Fix pending completion IndexError bug caused by multiple threads (dpkp #1372) + + # 1.4.0 (Feb 6, 2018) This is a substantial release. Although there are no known 'showstopper' bugs as of release, diff --git a/docs/changelog.rst b/docs/changelog.rst index 51f5533a5..237540b12 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,17 @@ Changelog ========= +1.4.1 (Feb 9, 2018) +################### + +Bugfixes +-------- +* Fix consumer poll stuck error when no available partition (ckyoog #1375) +* Increase some integration test timeouts (dpkp #1374) +* Use raw in case string overriden (jeffwidman #1373) +* Fix pending completion IndexError bug caused by multiple threads (dpkp #1372) + + 1.4.0 (Feb 6, 2018) ################### diff --git a/kafka/version.py b/kafka/version.py index 535ed241e..8e3c933cd 100644 --- a/kafka/version.py +++ b/kafka/version.py @@ -1 +1 @@ -__version__ = '1.4.1.dev' +__version__ = '1.4.1'