diff --git a/docs/changelog.rst b/docs/changelog.rst index 11d3150f..dc34ac87 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -15,7 +15,7 @@ Release Notes -v0.2.6 (unreleased) +v0.2.7 (unreleased) ------------------- To avail of fixes in an unreleased version, please download a ZIP file @@ -24,6 +24,15 @@ To avail of fixes in an unreleased version, please download a ZIP file Fixes ~~~~~ +*(none yet)* + + +v0.2.6 (2019-03-06) +------------------- + +Fixes +~~~~~ + * `#542 `_: some versions of OS X ship a default Python that does not support :func:`select.poll`. Restore the 0.2.3 behaviour of defaulting to Kqueue in this case, but still prefer @@ -74,7 +83,6 @@ Core Library :meth:`mitogen.core.Latch.put`'s `obj` argument was made optional. - Thanks! ~~~~~~~ @@ -90,7 +98,6 @@ bug reports, testing, features and fixes in this release contributed by `@zyphermonkey `_. - v0.2.5 (2019-02-14) ------------------- diff --git a/mitogen/__init__.py b/mitogen/__init__.py index 08f875d4..048798d9 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, 5) +__version__ = (0, 2, 6) #: This is :data:`False` in slave contexts. Previously it was used to prevent