diff --git a/docs/changelog.rst b/docs/changelog.rst index 8a96fcd7..7e1cf076 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -18,7 +18,13 @@ To avail of fixes in an unreleased version, please download a ZIP file `directly from GitHub `_. -v0.3.1 (2021-01-12) +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) diff --git a/mitogen/__init__.py b/mitogen/__init__.py index 76bec52c..0793fbf5 100644 --- a/mitogen/__init__.py +++ b/mitogen/__init__.py @@ -35,7 +35,7 @@ be expected. On the slave, it is built dynamically during startup. #: Library version as a tuple. -__version__ = (0, 3, 1) +__version__ = (0, 3, 2) #: This is :data:`False` in slave contexts. Previously it was used to prevent diff --git a/setup.py b/setup.py index 8275a07e..9d529a36 100644 --- a/setup.py +++ b/setup.py @@ -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',