summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2016-01-08 17:57:16 -0800
committerAsk Solem <ask@celeryproject.org>2016-01-08 17:57:16 -0800
commit10ab8857d716d6f62ca57bf25aa286188b6671a4 (patch)
tree392c8e6fa7f325f35f8269c41b84478e12160b27
parent8a9b643acf1e91242a202266f463d6a632848523 (diff)
downloadpy-amqp-10ab8857d716d6f62ca57bf25aa286188b6671a4.tar.gz
Bumps version to 1.4.9 and updates Changelogv1.4.9
-rw-r--r--Changelog11
-rw-r--r--README.rst2
-rw-r--r--amqp/__init__.py2
3 files changed, 13 insertions, 2 deletions
diff --git a/Changelog b/Changelog
index b4caae6..0612fff 100644
--- a/Changelog
+++ b/Changelog
@@ -5,6 +5,17 @@ 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.4.9:
+
+1.4.9
+=====
+:release-date: 2016-01-08 5:50 PM PST
+
+- Fixes compatibility with Linux/OS X instances where the ``ctypes`` module
+ does not exist.
+
+ Fix contributed by Jared Lewis.
+
.. _version-1.4.8:
1.4.8
diff --git a/README.rst b/README.rst
index 1562d1e..653c4ce 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
Python AMQP 0.9.1 client library
=====================================================================
-:Version: 1.4.8
+:Version: 1.4.9
: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 20cc4f5..9c39c43 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, 4, 8)
+VERSION = (1, 4, 9)
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Barry Pederson'
__maintainer__ = 'Ask Solem'