Skip to content

Commit 55f973e

Browse files
committed
Release v0.3.0
1 parent 58ce9d8 commit 55f973e

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

docs/changelog.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Release Notes
1717
To avail of fixes in an unreleased version, please download a ZIP file
1818
`directly from GitHub <https://github.com/dw/mitogen/>`_.
1919

20-
v0.3.0 (unreleased)
21-
--------------------
20+
v0.3.0 (2021-10-28)
21+
-------------------
2222

2323
This release separates itself from the v0.2.X releases. Ansible's API changed too much to support backwards compatibility so from now on, v0.2.X releases will be for Ansible < 2.10 and v0.3.X will be for Ansible 2.10+.
2424
`See here for details <https://github.com/dw/mitogen pull/715#issuecomment-750697248>`_.
@@ -30,7 +30,7 @@ This release separates itself from the v0.2.X releases. Ansible's API changed to
3030
* :gh:issue:`847` Removed historic Continuous Integration reverse shell
3131

3232

33-
v0.2.10 (unreleased)
33+
v0.2.10 (2021-10-28)
3434
--------------------
3535

3636
* :gh:issue:`597` mitogen does not support Ansible 2.8 Python interpreter detection
@@ -45,6 +45,7 @@ v0.2.10 (unreleased)
4545
:method:`ansible.plugins.callback.CallbackBase.v2_runner_on_start`
4646
* :gh:issue:`775` Test with Python 3.9
4747
* :gh:issue:`775` Add msvcrt to the default module deny list
48+
* :gh:issue:`847` Removed historic Continuous Integration reverse shell
4849

4950

5051
v0.2.9 (2019-11-02)

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, 0, 'rc', 1)
38+
__version__ = (0, 3, 0)
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
@@ -37,7 +37,7 @@ def grep_version():
3737
for line in fp:
3838
if line.startswith('__version__'):
3939
_, _, s = line.partition('=')
40-
return '%i.%i.%i%s%i' % eval(s)
40+
return '%i.%i.%i' % eval(s)
4141

4242

4343
def long_description():

0 commit comments

Comments
 (0)