diff options
-rw-r--r-- | CHANGES.md | 9 | ||||
-rw-r--r-- | docs/changelog.rst | 11 | ||||
-rw-r--r-- | kafka/version.py | 2 |
3 files changed, 21 insertions, 1 deletions
@@ -1,3 +1,12 @@ +# 1.2.4 (July 8, 2016) + +Bugfixes +* Update consumer_timeout_ms docstring - KafkaConsumer raises StopIteration, no longer ConsumerTimeout +* Use explicit subscription state flag to handle seek() during message iteration +* Fix consumer iteration on compacted topics (dpkp PR 752) +* Support ssl_password config when loading cert chains (amckemie PR 750) + + # 1.2.3 (July 2, 2016) Patch Improvements diff --git a/docs/changelog.rst b/docs/changelog.rst index ff4e887..0e1632e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,17 @@ Changelog ========= +1.2.4 (July 8, 2016) +#################### + +Bugfixes +-------- +* Update consumer_timeout_ms docstring - KafkaConsumer raises StopIteration, no longer ConsumerTimeout +* Use explicit subscription state flag to handle seek() during message iteration +* Fix consumer iteration on compacted topics (dpkp PR 752) +* Support ssl_password config when loading cert chains (amckemie PR 750) + + 1.2.3 (July 2, 2016) #################### diff --git a/kafka/version.py b/kafka/version.py index 5a5df3b..daab838 100644 --- a/kafka/version.py +++ b/kafka/version.py @@ -1 +1 @@ -__version__ = '1.2.3' +__version__ = '1.2.4' |