summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2013-10-04 15:21:11 +0100
committerAsk Solem <ask@celeryproject.org>2013-10-04 15:21:11 +0100
commit00efce7d9f9b8740e8df889987caf55700fd1b77 (patch)
tree2a3d9db2aa4bdaf40a554e42a7986e8dd947bc97
parentd3259de7917a0808de35b6cae9742c52e8185999 (diff)
downloadkombu-00efce7d9f9b8740e8df889987caf55700fd1b77.tar.gz
Bumps version to 2.5.15v2.5.15
-rw-r--r--Changelog2
-rw-r--r--README.rst2
-rw-r--r--kombu/__init__.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/Changelog b/Changelog
index e75cd276..476ac56e 100644
--- a/Changelog
+++ b/Changelog
@@ -8,7 +8,7 @@
2.5.15
======
-:release-date: 2014-09-XX XX:XX X.X BST
+:release-date: 2013-09-04 03:30 P.M BST
- Declaration cache: Now only keeps hash of declaration
so that it does not keep a reference to the channel.
diff --git a/README.rst b/README.rst
index d9a655be..91d98c7c 100644
--- a/README.rst
+++ b/README.rst
@@ -4,7 +4,7 @@
kombu - Messaging Framework for Python
========================================
-:Version: 2.5.14
+:Version: 2.5.15
`Kombu` is a messaging framework for Python.
diff --git a/kombu/__init__.py b/kombu/__init__.py
index 56d511de..b56f7061 100644
--- a/kombu/__init__.py
+++ b/kombu/__init__.py
@@ -1,7 +1,7 @@
"""Messaging Framework for Python"""
from __future__ import absolute_import
-VERSION = (2, 5, 14)
+VERSION = (2, 5, 15)
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Ask Solem'
__contact__ = 'ask@celeryproject.org'