From bfece4d93900192a6343dbc2b7c07ed6cf048545 Mon Sep 17 00:00:00 2001 From: Thomas Dimson Date: Wed, 15 Jan 2014 10:59:40 -0800 Subject: [PATCH 1/3] Version bump --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8fd18289f..6c4e69e07 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ def run(self): setup( name="kafka-python", - version="0.8.1-1", + version="0.8.1-2", install_requires=["distribute"], tests_require=["tox"], From c7733e30dca6577f00f603e0018184a7c8b00ccf Mon Sep 17 00:00:00 2001 From: Thomas Dimson Date: Wed, 15 Jan 2014 11:02:19 -0800 Subject: [PATCH 2/3] Update README.md too --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b79882773..fcf522712 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ 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 +version of this project. The current version is 0.8.1-2. This version is under development, APIs are subject to change. # Usage From 61a0cb6f83e36172e2926c7c6813c7a56c857acc Mon Sep 17 00:00:00 2001 From: Thomas Dimson Date: Wed, 15 Jan 2014 11:29:27 -0800 Subject: [PATCH 3/3] 0.9.0 --- README.md | 5 ++--- setup.py | 3 ++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fcf522712..9bf3a039b 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.1-2. 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 6c4e69e07..0869fee3e 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,7 @@ class Tox(Command): user_options = [] + def initialize_options(self): pass @@ -19,7 +20,7 @@ def run(self): setup( name="kafka-python", - version="0.8.1-2", + version="0.9.0", install_requires=["distribute"], tests_require=["tox"],