summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Powers <dana.powers@gmail.com>2017-03-14 13:36:40 -0700
committerDana Powers <dana.powers@gmail.com>2017-03-14 13:36:40 -0700
commit0e24da3410153e4abd1e23f2229cec31a5252ea1 (patch)
treee0e1815f0ff548f59506e3c961ece5db20725c3e
parent65ba8822b10e6f8a3ba4e9a6b0a1e6f9b785c18e (diff)
downloadkafka-python-0e24da3410153e4abd1e23f2229cec31a5252ea1.tar.gz
Release 1.3.31.3.3
-rw-r--r--CHANGES.md5
-rw-r--r--docs/changelog.rst5
-rw-r--r--kafka/version.py2
3 files changed, 9 insertions, 3 deletions
diff --git a/CHANGES.md b/CHANGES.md
index c42af4d..25ca158 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,8 @@
-# 1.3.3 (Unreleased)
+# 1.3.3 (Mar 14, 2017)
Core / Protocol
+* Derive all api classes from Request / Response base classes (dpkp 1030)
+* Prefer python-lz4 if available (dpkp 1024)
* Fix kwarg handing in kafka.protocol.struct.Struct (dpkp 1025)
* Fixed couple of "leaks" when gc is disabled (Mephius 979)
* Added `max_bytes` option and FetchRequest_v3 usage. (Drizzt1991 962)
@@ -51,6 +53,7 @@ Client
* Pass error to BrokerConnection.close() (dpkp)
Bugfixes
+* Free lz4 decompression context to avoid leak (dpkp 1024)
* Fix sasl reconnect bug: auth future must be reset on close (dpkp 1003)
* Fix raise exception from SubscriptionState.assign_from_subscribed (qntln 960)
* Fix blackout calculation: mark last_attempt time during connection close (dpkp 1008)
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 0055ae2..6faa3e0 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -1,11 +1,13 @@
Changelog
=========
-1.3.3 (Unreleased)
+1.3.3 (Mar 14, 2017)
####################
Core / Protocol
---------------
+* Derive all api classes from Request / Response base classes (dpkp 1030)
+* Prefer python-lz4 if available (dpkp 1024)
* Fix kwarg handing in kafka.protocol.struct.Struct (dpkp 1025)
* Fixed couple of "leaks" when gc is disabled (Mephius 979)
* Added `max_bytes` option and FetchRequest_v3 usage. (Drizzt1991 962)
@@ -61,6 +63,7 @@ Client
Bugfixes
--------
+* Free lz4 decompression context to avoid leak (dpkp 1024)
* Fix sasl reconnect bug: auth future must be reset on close (dpkp 1003)
* Fix raise exception from SubscriptionState.assign_from_subscribed (qntln 960)
* Fix blackout calculation: mark last_attempt time during connection close (dpkp 1008)
diff --git a/kafka/version.py b/kafka/version.py
index 58419f8..07f744c 100644
--- a/kafka/version.py
+++ b/kafka/version.py
@@ -1 +1 @@
-__version__ = '1.3.3.dev'
+__version__ = '1.3.3'