summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2013-10-24 16:50:17 +0100
committerAsk Solem <ask@celeryproject.org>2013-10-24 16:50:17 +0100
commitc92b68368e2e9cecc53f072f5b17848f5697860d (patch)
tree5e34f30e9f5bdb72e718cb4a18a0339fddb8faf2
parenta99e23eb919f911ed3fe19c7c6a53b1293884205 (diff)
downloadpy-amqp-c92b68368e2e9cecc53f072f5b17848f5697860d.tar.gz
Bumps version to 1.3.1 and updates Changelogv1.3.1
-rw-r--r--Changelog10
-rw-r--r--README.rst2
-rw-r--r--amqp/__init__.py2
3 files changed, 12 insertions, 2 deletions
diff --git a/Changelog b/Changelog
index 34493ff..77ef6f1 100644
--- a/Changelog
+++ b/Changelog
@@ -5,6 +5,16 @@ 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.3.1:
+
+1.3.1
+=====
+:release-date: 2013-10-24 04:00 P.M UTC
+
+- Now implements Connection.connected (Issue #22).
+
+- Fixed bug where ``str(AMQPError)`` did not return string.
+
.. _version-1.3.0:
1.3.0
diff --git a/README.rst b/README.rst
index 2c22124..795cd31 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
Python AMQP 0.9.1 client library
=====================================================================
-:Version: 1.3.0
+:Version: 1.3.1
: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 d2e91df..85823d0 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, 3, 0)
+VERSION = (1, 3, 1)
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Barry Pederson'
__maintainer__ = 'Ask Solem'