summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Powers <dana.powers@gmail.com>2016-06-21 14:44:01 -0700
committerDana Powers <dana.powers@gmail.com>2016-06-21 14:44:01 -0700
commit47c5045781b9137713d06f3e55fcd6fc7b8926d7 (patch)
tree7dde89967e3dfaa3d8cb693279d3b3b000d2ea93
parentccbb189c025acf35e8ae5902c7992aa835edbcf1 (diff)
downloadkafka-python-47c5045781b9137713d06f3e55fcd6fc7b8926d7.tar.gz
Patch Release 1.2.21.2.2
-rw-r--r--CHANGES.md13
-rw-r--r--docs/changelog.rst15
-rw-r--r--kafka/version.py2
3 files changed, 29 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index ecbb928..ba042a4 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,16 @@
+# 1.2.2 (June 21, 2016)
+
+Bugfixes
+* Clarify timeout unit in KafkaProducer close and flush (ms7s PR 734)
+* Avoid busy poll during metadata refresh failure with retry_backoff_ms (dpkp PR 733)
+* Check_version should scan nodes until version found or timeout (dpkp PR 731)
+* Fix bug which could cause least_loaded_node to always return the same unavailable node (dpkp PR 730)
+* Fix producer garbage collection with weakref in atexit handler (dpkp PR 728)
+* Close client selector to fix fd leak (msmith PR 729)
+* Tweak spelling mistake in error const (steve8918 PR 719)
+* Rearrange connection tests to separate legacy KafkaConnection
+
+
# 1.2.1 (June 1, 2016)
Bugfixes
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 3d4f606..3279114 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -1,6 +1,21 @@
Changelog
=========
+1.2.2 (June 21, 2016)
+#####################
+
+Bugfixes
+--------
+* Clarify timeout unit in KafkaProducer close and flush (ms7s PR 734)
+* Avoid busy poll during metadata refresh failure with retry_backoff_ms (dpkp PR 733)
+* Check_version should scan nodes until version found or timeout (dpkp PR 731)
+* Fix bug which could cause least_loaded_node to always return the same unavailable node (dpkp PR 730)
+* Fix producer garbage collection with weakref in atexit handler (dpkp PR 728)
+* Close client selector to fix fd leak (msmith PR 729)
+* Tweak spelling mistake in error const (steve8918 PR 719)
+* Rearrange connection tests to separate legacy KafkaConnection
+
+
1.2.1 (June 1, 2016)
####################
diff --git a/kafka/version.py b/kafka/version.py
index d24c74c..923b987 100644
--- a/kafka/version.py
+++ b/kafka/version.py
@@ -1 +1 @@
-__version__ = '1.2.2.dev'
+__version__ = '1.2.2'