summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2014-09-11 14:29:11 +0100
committerAsk Solem <ask@celeryproject.org>2014-09-11 14:29:11 +0100
commit78e8bfdb563614cc4420e3ae61868804c7e208f2 (patch)
tree62861c9229631b19852e1b4594b7332668ffe75b
parente2a39e6e3baccf669aabff6968cbc0ca1df0292a (diff)
downloadkombu-78e8bfdb563614cc4420e3ae61868804c7e208f2.tar.gz
Bumps version to 3.0.23 and updates Changelog
-rw-r--r--Changelog14
-rw-r--r--README.rst2
-rw-r--r--kombu/__init__.py2
3 files changed, 16 insertions, 2 deletions
diff --git a/Changelog b/Changelog
index 8efba54d..06a9cab5 100644
--- a/Changelog
+++ b/Changelog
@@ -4,6 +4,20 @@
Change history
================
+.. _version-3.0.23:
+
+3.0.23
+======
+:release-date: 2014-09-11 02:00 P.M UTC
+
+- Django: Fixed bug in the Django 1.7 compatibility improvements related
+ to autocommit handling.
+
+ Contributed by Radek Czajka.
+
+- Django: The Django transport models would not be created on syncdb
+ after app label rename (Issue #406).
+
.. _version-3.0.22:
3.0.22
diff --git a/README.rst b/README.rst
index 00b951ea..ee2a854c 100644
--- a/README.rst
+++ b/README.rst
@@ -4,7 +4,7 @@
kombu - Messaging library for Python
========================================
-:Version: 3.0.22
+:Version: 3.0.23
`Kombu` is a messaging library for Python.
diff --git a/kombu/__init__.py b/kombu/__init__.py
index 306a7cbc..d4cf02be 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, 22, '', '')
+VERSION = version_info_t(3, 0, 23, '', '')
__version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
__author__ = 'Ask Solem'
__contact__ = 'ask@celeryproject.org'