Fix Trove classifier, bump version

fixes #891

(cherry picked from commit 1a84184838)
pull/913/head
Alex Willmer 3 years ago committed by Alex Willmer
parent 5b505f524a
commit e8c3fe7881
No known key found for this signature in database
GPG Key ID: B050F36BC7E512A7

@ -18,8 +18,14 @@ To avail of fixes in an unreleased version, please download a ZIP file
`directly from GitHub <https://github.com/dw/mitogen/>`_.
v0.3.1.dev0 (unreleased)
------------------------
v0.3.2 (2022-01-12)
-------------------
* :gh:issue:`891` Correct `Framework :: Ansible` Trove classifier
v0.3.1 (unreleased)
-------------------
* :gh:issue:`874` Support for Ansible 5 (ansible-core 2.12)
* :gh:issue:`774` Fix bootstrap failures on macOS 11.x and 12.x, involving Python 2.7 wrapper

@ -35,7 +35,7 @@ be expected. On the slave, it is built dynamically during startup.
#: Library version as a tuple.
__version__ = (0, 3, 1, 'dev0')
__version__ = (0, 3, 2)
#: This is :data:`False` in slave contexts. Previously it was used to prevent

@ -64,7 +64,7 @@ setup(
zip_safe = False,
classifiers = [
'Environment :: Console',
'Frameworks :: Ansible',
'Framework :: Ansible',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',

Loading…
Cancel
Save