summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2015-04-22 19:12:52 +0100
committerAsk Solem <ask@celeryproject.org>2015-04-22 19:12:52 +0100
commit0287b11ab0698d9c52ef1b1683ced23123d43ba4 (patch)
treea053153070ff3433a3755094c3328da43fa2bd40
parentced401265ad9f9836b2c31aae60bf37f57209591 (diff)
downloadkombu-0287b11ab0698d9c52ef1b1683ced23123d43ba4.tar.gz
Bumps version to 3.1.26 and updates Changelogv3.0.26
-rw-r--r--Changelog11
-rw-r--r--README.rst2
-rw-r--r--kombu/__init__.py2
3 files changed, 12 insertions, 3 deletions
diff --git a/Changelog b/Changelog
index cbbda096..9f063faa 100644
--- a/Changelog
+++ b/Changelog
@@ -4,12 +4,21 @@
Change history
================
+.. _version-3.0.26"
+
+3.0.26
+======
+:release-date: 2015-04-22 06:00 P.M UTC
+:release-by: Ask Solem
+
+- Fixed compatibility with py-redis versions before 2.10.3 (Issue #470).
+
.. _version-3.0.25:
3.0.25
======
:release-date: 2015-04-21 02:00 P.M UTC
-:releasy-by: Ask Solem
+:release-by: Ask Solem
- pyamqp/librabbitmq now uses 5671 as default port when SSL is enabled
(Issue #459).
diff --git a/README.rst b/README.rst
index ec345419..97fde73e 100644
--- a/README.rst
+++ b/README.rst
@@ -4,7 +4,7 @@
kombu - Messaging library for Python
========================================
-:Version: 3.0.25
+:Version: 3.0.26
`Kombu` is a messaging library for Python.
diff --git a/kombu/__init__.py b/kombu/__init__.py
index b41172b7..5d923941 100644
--- a/kombu/__init__.py
+++ b/kombu/__init__.py
@@ -7,7 +7,7 @@ version_info_t = namedtuple(
'version_info_t', ('major', 'minor', 'micro', 'releaselevel', 'serial'),
)
-VERSION = version_info_t(3, 0, 25, '', '')
+VERSION = version_info_t(3, 0, 26, '', '')
__version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
__author__ = 'Ask Solem'
__contact__ = 'ask@celeryproject.org'