summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2013-02-08 12:23:22 +0000
committerAsk Solem <ask@celeryproject.org>2013-02-08 12:23:22 +0000
commitb823b3d2578549cdce6fbac95b569c6d53a54e94 (patch)
tree1896ac9535359ac59ceeefa83f256baabaad0c10
parentc2a87e6f2bd155d8091a68ed21fce8b2a5112ab3 (diff)
downloadpy-amqp-b823b3d2578549cdce6fbac95b569c6d53a54e94.tar.gz
Bumps version to 1.0.7 and updates Changelogv1.0.7
-rw-r--r--Changelog18
-rw-r--r--README.rst2
-rw-r--r--amqp/__init__.py2
3 files changed, 19 insertions, 3 deletions
diff --git a/Changelog b/Changelog
index 7ed5b6e..e1cc078 100644
--- a/Changelog
+++ b/Changelog
@@ -5,7 +5,21 @@ 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.5:
+.. _version-1.0.7:
+
+1.0.7
+=====
+:release-date: 2013-02-08 01:00 P.M UTC
+
+- Workaround for bug on some Python 2.5 installations where (2**32) is 0.
+
+- Can now serialize the ARRAY type.
+
+ Contributed by Adam Wentz.
+
+- Fixed tuple format bug in exception (Issue #4).
+
+.. _version-1.0.6:
1.0.6
=====
@@ -13,6 +27,8 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES
- ``Channel.close`` is now ignored if the connection attribute is None.
+.. _version-1.0.5
+
1.0.5
=====
:release-date: 2012-11-21 04:00 P.M UTC
diff --git a/README.rst b/README.rst
index 782f4e7..9abe6d9 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
Python AMQP 0.9.1 client library
=====================================================================
-:Version: 1.0.6
+:Version: 1.0.7
: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 041d049..3091622 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, 6)
+VERSION = (1, 0, 7)
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Barry Pederson'
__maintainer__ = 'Ask Solem'