summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.md5
-rw-r--r--docs/changelog.rst7
-rw-r--r--kafka/version.py2
3 files changed, 10 insertions, 4 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 095f43f..11d6ac7 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,4 +1,4 @@
-# 1.4.2 (Unreleased)
+# 1.4.2 (Mar 10, 2018)
Bugfixes
* Close leaked selector in version check (dpkp #1425)
@@ -22,6 +22,7 @@ Client
Consumer
* Avoid tight poll loop in consumer when brokers are down (dpkp #1415)
* Validate `max_records` in KafkaConsumer.poll (dpkp #1398)
+* KAFKA-5512: Awake heartbeat thread when it is time to poll (dpkp #1439)
Producer
* Validate that serializers generate bytes-like (or None) data (dpkp #1420)
@@ -36,10 +37,12 @@ Test Infrastructure
* Introduce new fixtures to prepare for migration to pytest (asdaraujo #1293)
* Removed pytest-catchlog dependency (asdaraujo #1380)
* Fixes racing condition when message is sent to broker before topic logs are created (asdaraujo #1293)
+* Add kafka 1.0.1 release to test fixtures (dpkp #1437)
Logging / Error Messages
* Re-enable logging during broker version check (dpkp #1430)
* Connection logging cleanups (dpkp #1432)
+* Remove old CommitFailed error message from coordinator (dpkp #1436)
# 1.4.1 (Feb 9, 2018)
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 804296d..2f7d87b 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -1,8 +1,8 @@
Changelog
=========
-1.4.2 (Unreleased)
-##################
+1.4.2 (Mar 10, 2018)
+####################
Bugfixes
--------
@@ -29,6 +29,7 @@ Consumer
--------
* Avoid tight poll loop in consumer when brokers are down (dpkp #1415)
* Validate `max_records` in KafkaConsumer.poll (dpkp #1398)
+* KAFKA-5512: Awake heartbeat thread when it is time to poll (dpkp #1439)
Producer
--------
@@ -46,11 +47,13 @@ Test Infrastructure
* Introduce new fixtures to prepare for migration to pytest (asdaraujo #1293)
* Removed pytest-catchlog dependency (asdaraujo #1380)
* Fixes racing condition when message is sent to broker before topic logs are created (asdaraujo #1293)
+* Add kafka 1.0.1 release to test fixtures (dpkp #1437)
Logging / Error Messages
------------------------
* Re-enable logging during broker version check (dpkp #1430)
* Connection logging cleanups (dpkp #1432)
+* Remove old CommitFailed error message from coordinator (dpkp #1436)
1.4.1 (Feb 9, 2018)
diff --git a/kafka/version.py b/kafka/version.py
index 9e1aeca..98d186b 100644
--- a/kafka/version.py
+++ b/kafka/version.py
@@ -1 +1 @@
-__version__ = '1.4.2.dev'
+__version__ = '1.4.2'