From 6e7e591eaa9181006a2c97d71f7bfe176a741940 Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Wed, 26 Oct 2011 17:04:07 +0100 Subject: [PATCH] Bumps version to 1.4.2 --- README.rst | 2 +- contrib/release/bump_version.py | 0 kombu/__init__.py | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 contrib/release/bump_version.py diff --git a/README.rst b/README.rst index b00a5b9a..7933bed8 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ kombu - AMQP Messaging Framework for Python ############################################# -:Version: 1.4.1 +:Version: 1.4.2 Synopsis ======== diff --git a/contrib/release/bump_version.py b/contrib/release/bump_version.py old mode 100644 new mode 100755 diff --git a/kombu/__init__.py b/kombu/__init__.py index 43f95a35..6070195f 100644 --- a/kombu/__init__.py +++ b/kombu/__init__.py @@ -1,5 +1,5 @@ """AMQP Messaging Framework for Python""" -VERSION = (1, 4, 1) +VERSION = (1, 4, 2) __version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:]) __author__ = "Ask Solem" __contact__ = "ask@celeryproject.org"