Bumps version to 1.4.1

This commit is contained in:
Ask Solem 2011-09-26 18:12:10 +01:00
parent 30ae88022d
commit 31a2ea90ca
3 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
kombu - AMQP Messaging Framework for Python
#############################################
:Version: 1.4.0
:Version: 1.4.1
Synopsis
========

View File

@ -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):

View File

@ -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"