summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2012-11-12 15:36:07 +0000
committerAsk Solem <ask@celeryproject.org>2012-11-12 15:36:07 +0000
commita6e200b2959f853fb4c9e3d033871e96ebecd217 (patch)
tree45bdc9ce40c80a413ae1520168ec9fe4b04894be
parent1596a30e053c410a079ab42c84ca780875b576c0 (diff)
downloadpy-amqp-a6e200b2959f853fb4c9e3d033871e96ebecd217.tar.gz
Bumps version to 1.0.3 and updates Changelogv1.0.3
-rw-r--r--Changelog15
-rw-r--r--README.rst2
-rw-r--r--amqp/__init__.py2
-rw-r--r--docs/includes/intro.txt2
4 files changed, 18 insertions, 3 deletions
diff --git a/Changelog b/Changelog
index a2e1c15..e275212 100644
--- a/Changelog
+++ b/Changelog
@@ -5,6 +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.3:
+
+1.0.3
+=====
+:release-date: 2012-11-12 04:00 P.M UTC
+
+- Now can also handle float in headers/tables when receiving messages.
+
+- Now uses :class:`array.array` to keep track of unused channel ids.
+
+- The :data:`~amqp.exceptions.METHOD_NAME_MAP` has been updated for
+ amqp/0.9.1 and Rabbit extensions.
+
+- Removed a bunch of accidentally included images.
+
.. _version-1.0.2:
1.0.2
diff --git a/README.rst b/README.rst
index 0d42f3c..0a88c18 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
Python AMQP 0.9.1 client library
=====================================================================
-:Version: 1.0.1
+:Version: 1.0.3
: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 5f4ac0b..54f86fb 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, 2)
+VERSION = (1, 0, 3)
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Barry Pederson'
__maintainer__ = 'Ask Solem'
diff --git a/docs/includes/intro.txt b/docs/includes/intro.txt
index 1c1337d..e7176ea 100644
--- a/docs/includes/intro.txt
+++ b/docs/includes/intro.txt
@@ -1,4 +1,4 @@
-:Version: 1.0.2
+:Version: 1.0.3
:Web: http://amqp.readthedocs.org/
:Download: http://pypi.python.org/pypi/amqp/
:Source: http://github.com/celery/py-amqp/