Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
increment version, changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
emmettbutler committed May 25, 2016
1 parent 57d2ab7 commit 9fb10e7
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,41 @@
Changelog
=========

2.4.0 (2016-5-25)
-----------------

`Compare 2.4.0`_

.. _Compare 2.4.0:

Minor Version Features
**********************

* Added support for connecting to Kafka brokers using a secure TLS connection
* Removed the fallback in `Cluster` that treated `hosts` as a ZooKeeper
connection string
* Removed the `block_on_queue_full` kwarg from the rdkafka producer
* Added the `max_request_size` kwarg to the rdkafka producer

Bug Fixes
*********

* Performed permissive parameter validation in consumers and producer to avoid
cryptic errors on threads
* Allowed more consumers than partitions in a balanced consumer group
* Fixed python 3 compatibility in `kafka_tools.py`
* Fixed a bug causing nuisance errors on interpreter shutdown
* Removed some uses of deprecated functions in the rdkafka C extension
* Fixed a bug causing crashes when kafka returns an invalid partition ID in
partition requests

Miscellaneous
*************

* Added utilities for testing TLS support to the test suite
* Made the gevent version requirement slightly more inclusive


2.3.1 (2016-4-8)
----------------

Expand Down
2 changes: 1 addition & 1 deletion pykafka/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from .balancedconsumer import BalancedConsumer
from .managedbalancedconsumer import ManagedBalancedConsumer

__version__ = '2.3.2-dev'
__version__ = '2.4.0'


__all__ = ["Broker", "SimpleConsumer", "Cluster", "Partition", "Producer",
Expand Down

0 comments on commit 9fb10e7

Please sign in to comment.