From f91cb17f82862812b85d8f32686fd2507e865b8b Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Sat, 25 Jan 2020 08:18:32 -0800 Subject: [PATCH] prepare release 0.9.0 --- CHANGES.txt | 5 +++++ aiozmq/__init__.py | 2 +- setup.py | 6 ++++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 280f1c5..d3fb5f8 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,11 @@ CHANGES ------- +0.9.0 (2020-01-25) +^^^^^^^^^^^^^^^^^^ + +* Support Python 3.7 and 3.8 + 0.8.0 (2016-12-07) ^^^^^^^^^^^^^^^^^^ diff --git a/aiozmq/__init__.py b/aiozmq/__init__.py index d5344e5..326a8c9 100644 --- a/aiozmq/__init__.py +++ b/aiozmq/__init__.py @@ -18,7 +18,7 @@ 'create_zmq_connection', 'version_info', 'version') -__version__ = '0.9.0a0' +__version__ = '0.9.0' version = __version__ + ' , Python ' + sys.version diff --git a/setup.py b/setup.py index 162565f..9d5d054 100644 --- a/setup.py +++ b/setup.py @@ -37,6 +37,8 @@ def read_version(): 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Operating System :: POSIX', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', @@ -54,8 +56,8 @@ def read_version(): platforms=['POSIX', 'Windows', 'MacOS X'], author='Nikolay Kim', author_email='fafhrd91@gmail.com', - maintainer='Andrew Svetlov', - maintainer_email='andrew.svetlov@gmail.com', + maintainer='Jelle Zijlstra', + maintainer_email='jelle.zijlstra@gmail.com', url='http://aiozmq.readthedocs.org', download_url='https://pypi.python.org/pypi/aiozmq', license='BSD',