summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Powers <dana.powers@gmail.com>2017-10-07 15:26:59 -0700
committerDana Powers <dana.powers@gmail.com>2017-10-07 15:26:59 -0700
commit24af3987b5c1841c7ef43cf311f04233b83d9716 (patch)
tree17bd85a8fc8822578ec76c69be0541cdce725c55
parent30ba2c1dbd22eff5f202bbbf2ecd8b42d242b1b0 (diff)
downloadkafka-python-24af3987b5c1841c7ef43cf311f04233b83d9716.tar.gz
Release 1.3.51.3.5
-rw-r--r--CHANGES.md22
-rw-r--r--docs/changelog.rst27
-rw-r--r--kafka/version.py2
3 files changed, 50 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 7a8c92b..e9d1e87 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,25 @@
+# 1.3.5 (Oct 7, 2017)
+
+Bugfixes
+* Fix partition assignment race condition (jeffwidman #1240)
+* Fix consumer bug when seeking / resetting to the middle of a compressed messageset (dpkp #1239)
+* Fix traceback sent to stderr not logging (dbgasaway #1221)
+* Stop using mutable types for default arg values (jeffwidman #1213)
+* Remove a few unused imports (jameslamb #1188)
+
+Client
+* Refactor BrokerConnection to use asynchronous receive_bytes pipe (dpkp #1032)
+
+Consumer
+* Drop unused sleep kwarg to poll (dpkp #1177)
+* Enable KafkaConsumer beginning_offsets() and end_offsets() with older broker versions (buptljy #1200)
+* Validate consumer subscription topic strings (nikeee #1238)
+
+Documentation
+* Small fixes to SASL documentation and logging; validate security_protocol (dpkp #1231)
+* Various typo and grammar fixes (jeffwidman)
+
+
# 1.3.4 (Aug 13, 2017)
Bugfixes
diff --git a/docs/changelog.rst b/docs/changelog.rst
index cf6b6aa..dc5ca85 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -1,6 +1,33 @@
Changelog
=========
+1.3.5 (Oct 7, 2017)
+####################
+
+Bugfixes
+--------
+* Fix partition assignment race condition (jeffwidman #1240)
+* Fix consumer bug when seeking / resetting to the middle of a compressed messageset (dpkp #1239)
+* Fix traceback sent to stderr not logging (dbgasaway #1221)
+* Stop using mutable types for default arg values (jeffwidman #1213)
+* Remove a few unused imports (jameslamb #1188)
+
+Client
+------
+* Refactor BrokerConnection to use asynchronous receive_bytes pipe (dpkp #1032)
+
+Consumer
+--------
+* Drop unused sleep kwarg to poll (dpkp #1177)
+* Enable KafkaConsumer beginning_offsets() and end_offsets() with older broker versions (buptljy #1200)
+* Validate consumer subscription topic strings (nikeee #1238)
+
+Documentation
+-------------
+* Small fixes to SASL documentation and logging; validate security_protocol (dpkp #1231)
+* Various typo and grammar fixes (jeffwidman)
+
+
1.3.4 (Aug 13, 2017)
####################
diff --git a/kafka/version.py b/kafka/version.py
index a62326c..5b8f37a 100644
--- a/kafka/version.py
+++ b/kafka/version.py
@@ -1 +1 @@
-__version__ = '1.3.5.dev'
+__version__ = '1.3.5'