Skip to content

Commit bd3cfb4

Browse files
authored
Merge pull request #892 from moreati/prepare-0.3.2
Fix Trove classifier, bump version
2 parents 2bdffd0 + 1a84184 commit bd3cfb4

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

docs/changelog.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ To avail of fixes in an unreleased version, please download a ZIP file
1818
`directly from GitHub <https://github.com/dw/mitogen/>`_.
1919

2020

21-
v0.3.1 (2021-01-12)
21+
v0.3.2 (2022-01-12)
22+
-------------------
23+
24+
* :gh:issue:`891` Correct `Framework :: Ansible` Trove classifier
25+
26+
27+
v0.3.1 (unreleased)
2228
-------------------
2329

2430
* :gh:issue:`874` Support for Ansible 5 (ansible-core 2.12)

mitogen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636

3737
#: Library version as a tuple.
38-
__version__ = (0, 3, 1)
38+
__version__ = (0, 3, 2)
3939

4040

4141
#: This is :data:`False` in slave contexts. Previously it was used to prevent

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def long_description():
6464
zip_safe = False,
6565
classifiers = [
6666
'Environment :: Console',
67-
'Frameworks :: Ansible',
67+
'Framework :: Ansible',
6868
'Intended Audience :: System Administrators',
6969
'License :: OSI Approved :: BSD License',
7070
'Operating System :: MacOS :: MacOS X',

0 commit comments

Comments
 (0)