diff options
author | Mark Roberts <wizzat@gmail.com> | 2014-04-25 10:55:04 -0700 |
---|---|---|
committer | Mark Roberts <wizzat@gmail.com> | 2014-04-25 10:55:04 -0700 |
commit | 57913f9f914a959f52bc9040a172f8c9ff77e491 (patch) | |
tree | fe5cc6c14283a4c9d9175a748ef97f7d55df6fd7 /README.md | |
parent | 0e50f33ec678f6d656d488ce8a4537f95bba003e (diff) | |
download | kafka-python-57913f9f914a959f52bc9040a172f8c9ff77e491.tar.gz |
Various fixes
Bump version number to 0.9.1
Update readme to show supported Kafka/Python versions
Validate arguments in consumer.py, add initial consumer unit test
Make service kill() child processes when startup fails
Add tests for util.py, fix Python 2.6 specific bug.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 19 |
1 files changed, 13 insertions, 6 deletions
@@ -7,8 +7,6 @@ high-level consumer and producer classes. Request batching is supported by the protocol as well as broker-aware request routing. Gzip and Snappy compression is also supported for message sets. -Compatible with Apache Kafka 0.8.1 - http://kafka.apache.org/ # License @@ -17,8 +15,17 @@ Copyright 2013, David Arthur under Apache License, v2.0. See `LICENSE` # Status -The current version of this package is **0.9.0** and is compatible with -Kafka brokers running version **0.8.1**. +The current version of this package is **0.9.1** and is compatible with + +Kafka broker versions +- 0.8.0 +- 0.8.1 +- 0.8.1.1 + +Python versions +- 2.6.9 +- 2.7.6 +- pypy 2.2.1 # Usage @@ -209,6 +216,6 @@ git submodule update --init Then run the tests against supported Kafka versions: ```shell - KAFKA_VERSION=0.8.0 tox - KAFKA_VERSION=0.8.1 tox +KAFKA_VERSION=0.8.0 tox +KAFKA_VERSION=0.8.1 tox ``` |