diff --git a/docs/changelog.rst b/docs/changelog.rst index 72565ce1..9e85446e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -15,6 +15,18 @@ Release Notes +v0.2.1 (2018-07-10) +------------------- + +Mitogen for Ansible +~~~~~~~~~~~~~~~~~~~ + +* `#297 `_: compatibility: local + actions set their working directory to that of their defining playbook, and + inherit a process environment as if they were executed as a subprocess of the + forked task worker. + + v0.2.0 (2018-07-09) ------------------- diff --git a/mitogen/__init__.py b/mitogen/__init__.py index bdb743ce..7044cdd5 100644 --- a/mitogen/__init__.py +++ b/mitogen/__init__.py @@ -33,7 +33,7 @@ be expected. On the slave, it is built dynamically during startup. #: Library version as a tuple. -__version__ = (0, 2, 0) +__version__ = (0, 2, 1) #: This is :data:`False` in slave contexts. Previously it was used to prevent