summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog13
-rw-r--r--README.rst2
-rw-r--r--setup.py5
3 files changed, 17 insertions, 3 deletions
diff --git a/Changelog b/Changelog
index 98aee41..2f6aa4e 100644
--- a/Changelog
+++ b/Changelog
@@ -5,6 +5,19 @@ 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-2.5.1:
+
+2.5.1
+=====
+:release-date: 2019-08-14 22.00 P.M UTC+6:00
+:release-by: Asif Saif Uddin
+
+- Ignore all methods except Close and Close-OK when channel/connection is closing
+- Fix faulty ssl sni intiation parameters (#283)
+- Undeprecate auto_delete flag for exchanges. (#287)
+- Improved tests and testing environments
+
+
.. _version-2.5.0:
2.5.0
diff --git a/README.rst b/README.rst
index b7844d9..36b2cc6 100644
--- a/README.rst
+++ b/README.rst
@@ -4,7 +4,7 @@
|build-status| |coverage| |license| |wheel| |pyversion| |pyimp|
-:Version: 2.4.2
+:Version: 2.5.1
:Web: https://amqp.readthedocs.io/
:Download: https://pypi.org/project/amqp/
:Source: http://github.com/celery/py-amqp/
diff --git a/setup.py b/setup.py
index 12d6e62..4d306af 100644
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,6 @@ classes = """
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
- Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
@@ -46,6 +45,7 @@ def add_default(m):
def add_doc(m):
return (('doc', m.groups()[0]),)
+
pats = {re_meta: add_default,
re_doc: add_doc}
here = os.path.abspath(os.path.dirname(__file__))
@@ -102,6 +102,7 @@ class pytest(setuptools.command.test.test):
pytest_args = self.pytest_args.split(' ')
sys.exit(pytest.main(pytest_args))
+
setuptools.setup(
name=NAME,
packages=setuptools.find_packages(exclude=['ez_setup', 't', 't.*']),
@@ -116,7 +117,7 @@ setuptools.setup(
platforms=['any'],
license='BSD',
classifiers=classifiers,
- python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
+ python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
install_requires=reqs('default.txt'),
tests_require=reqs('test.txt'),
cmdclass={'test': pytest},