summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar <omar.ghishan@rd.io>2014-01-16 16:42:59 -0800
committerOmar <omar.ghishan@rd.io>2014-01-16 16:42:59 -0800
commit21e943828b3d4a2916ab2bdc1a79a8298a4f787d (patch)
tree702dce81d1ea6d4fdeb0ebf28e9e52e89c56e3dc
parente6c43d15e6254cd0848dd37dcfb3db776e82888c (diff)
parent61a0cb6f83e36172e2926c7c6813c7a56c857acc (diff)
downloadkafka-python-21e943828b3d4a2916ab2bdc1a79a8298a4f787d.tar.gz
Merge pull request #102 from cosbynator/master
Version bump to 0.9.0
-rw-r--r--README.md5
-rw-r--r--setup.py3
2 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index b798827..9bf3a03 100644
--- a/README.md
+++ b/README.md
@@ -17,9 +17,8 @@ Copyright 2013, David Arthur under Apache License, v2.0. See `LICENSE`
# Status
-I'm following the version numbers of Kafka, plus one number to indicate the
-version of this project. The current version is 0.8.0-1. This version is under
-development, APIs are subject to change.
+The current version of this package is **0.9.0** and is compatible with
+Kafka brokers running version **0.8.1**.
# Usage
diff --git a/setup.py b/setup.py
index 8fd1828..0869fee 100644
--- a/setup.py
+++ b/setup.py
@@ -6,6 +6,7 @@ from setuptools import setup, Command
class Tox(Command):
user_options = []
+
def initialize_options(self):
pass
@@ -19,7 +20,7 @@ class Tox(Command):
setup(
name="kafka-python",
- version="0.8.1-1",
+ version="0.9.0",
install_requires=["distribute"],
tests_require=["tox"],