summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2013-02-08 12:59:05 +0000
committerAsk Solem <ask@celeryproject.org>2013-02-08 12:59:05 +0000
commit20829027b769816bd4aba3037257db53b4c4bcf3 (patch)
treef7100c6f129187ffc62a372a21f4d748bae69077
parent5a2973486429c28972f530d6f66ce3daf45594f9 (diff)
downloadpy-amqp-1.0.8.tar.gz
Bumps version to 1.0.8 and updates Changelogv1.0.8
-rw-r--r--Changelog8
-rw-r--r--README.rst2
-rw-r--r--amqp/__init__.py2
3 files changed, 10 insertions, 2 deletions
diff --git a/Changelog b/Changelog
index e1cc078..8afb06d 100644
--- a/Changelog
+++ b/Changelog
@@ -5,6 +5,14 @@ py-amqp is fork of amqplib used by Kombu containing additional features and impr
The previous amqplib changelog is here:
http://code.google.com/p/py-amqplib/source/browse/CHANGES
+.. _version-1.0.8:
+
+1.0.8
+=====
+:release-date: 2013-02-08 01:00 P.M UTC
+
+- Fixed SyntaxError on Python 2.5
+
.. _version-1.0.7:
1.0.7
diff --git a/README.rst b/README.rst
index 9abe6d9..ac86e0e 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
Python AMQP 0.9.1 client library
=====================================================================
-:Version: 1.0.7
+:Version: 1.0.8
:Web: http://amqp.readthedocs.org/
:Download: http://pypi.python.org/pypi/amqp/
:Source: http://github.com/celery/py-amqp/
diff --git a/amqp/__init__.py b/amqp/__init__.py
index 3091622..74c4d0b 100644
--- a/amqp/__init__.py
+++ b/amqp/__init__.py
@@ -16,7 +16,7 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
from __future__ import absolute_import
-VERSION = (1, 0, 7)
+VERSION = (1, 0, 8)
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Barry Pederson'
__maintainer__ = 'Ask Solem'