summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2012-04-27 17:54:17 +0100
committerAsk Solem <ask@celeryproject.org>2012-04-27 17:54:17 +0100
commitbc4813b84dd9cffe9de01d97c6053782aa20faaa (patch)
tree2a7e6fe4a0d76f24842d42b1c8cd5947ab7b5a20
parent8899d26fa8088ce961b1aa3e69ca539d74559ed2 (diff)
downloadkombu-2.1.7.tar.gz
Bumps version to 2.1.7v2.1.7
-rw-r--r--README.rst2
-rw-r--r--kombu/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index d2985ec1..692506ea 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
kombu - Messaging Framework for Python
#############################################
-:Version: 2.1.6
+:Version: 2.1.7
Synopsis
========
diff --git a/kombu/__init__.py b/kombu/__init__.py
index a3d634aa..c582aadc 100644
--- a/kombu/__init__.py
+++ b/kombu/__init__.py
@@ -1,7 +1,7 @@
"""Messaging Framework for Python"""
from __future__ import absolute_import
-VERSION = (2, 1, 6)
+VERSION = (2, 1, 7)
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
__author__ = "Ask Solem"
__contact__ = "ask@celeryproject.org"