From 31a2ea90ca5b29e0e22ec4d70d07611861337a70 Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Mon, 26 Sep 2011 18:12:10 +0100 Subject: [PATCH] Bumps version to 1.4.1 --- README.rst | 2 +- contrib/release/bump_version.py | 6 +++--- kombu/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index f1506de9..6c1d7e20 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ kombu - AMQP Messaging Framework for Python ############################################# -:Version: 1.4.0 +:Version: 1.4.1 Synopsis ======== diff --git a/contrib/release/bump_version.py b/contrib/release/bump_version.py index af1d0f9f..dd7aa126 100755 --- a/contrib/release/bump_version.py +++ b/contrib/release/bump_version.py @@ -129,9 +129,9 @@ def bump(dist, docfile="README.rst", custom=None): print(" writing %r..." % (v.filename, )) v.write(next) - cmd("git", "commit", "-m", "Bumps version to %s" % (to_str(next), ), - *[f.filename for f in files]) - cmd("git", "tag", "v%s" % (to_str(next), )) + print(cmd("git", "commit", "-m", "Bumps version to %s" % (to_str(next), ), + *[f.filename for f in files])) + print(cmd("git", "tag", "v%s" % (to_str(next), ))) def main(argv=sys.argv, docfile="README.rst", custom=None): diff --git a/kombu/__init__.py b/kombu/__init__.py index 19f44c7c..40d7071b 100644 --- a/kombu/__init__.py +++ b/kombu/__init__.py @@ -1,5 +1,5 @@ """AMQP Messaging Framework for Python""" -VERSION = (1, 4, 0) +VERSION = (1, 4, 1) __version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:]) __author__ = "Ask Solem" __contact__ = "ask@celeryproject.org"