diff --git a/docs/changelog.rst b/docs/changelog.rst index 3b5e4b79..46bd8522 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -17,7 +17,7 @@ Release Notes To avail of fixes in an unreleased version, please download a ZIP file `directly from GitHub `_. -v0.2.10 (unreleased) +v0.2.10 (2021-10-28) -------------------- * :gh:issue:`597` mitogen does not support Ansible 2.8 Python interpreter detection diff --git a/mitogen/__init__.py b/mitogen/__init__.py index 3af0e6a7..b08e6dd3 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, 2, 10, 'rc', 1) +__version__ = (0, 2, 10) #: This is :data:`False` in slave contexts. Previously it was used to prevent diff --git a/setup.py b/setup.py index bd105147..eba88817 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def grep_version(): for line in fp: if line.startswith('__version__'): _, _, s = line.partition('=') - return '%i.%i.%i%s%i' % eval(s) + return '%i.%i.%i' % eval(s) def long_description():