diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e9553c4a..b9eac2da 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -2,7 +2,7 @@ commit = True tag = True message = "Release {new_version}" -current_version = 2.1.1 +current_version = 2.1.2 [bumpversion:file:setup.py] search = version='{current_version}' diff --git a/CHANGES.rst b/CHANGES.rst index 6efc627a..0a39cf81 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ CHANGELOG ========= +2.1.2 +---------- + +- [bugfix][macos] Fixed typing issue on macOS + 2.1.1 ---------- diff --git a/README.rst b/README.rst index 8e56168a..b42d2dd2 100644 --- a/README.rst +++ b/README.rst @@ -15,8 +15,8 @@ This is where you should consider using **mirakuru** to add superpowers to your :target: https://pypi.python.org/pypi/mirakuru/ :alt: Latest PyPI version -.. image:: https://readthedocs.org/projects/mirakuru/badge/?version=v2.1.1 - :target: http://mirakuru.readthedocs.io/en/v2.1.1/ +.. image:: https://readthedocs.org/projects/mirakuru/badge/?version=v2.1.2 + :target: http://mirakuru.readthedocs.io/en/v2.1.2/ :alt: Documentation Status .. image:: https://img.shields.io/pypi/wheel/mirakuru.svg @@ -34,12 +34,12 @@ This is where you should consider using **mirakuru** to add superpowers to your Package status -------------- -.. image:: https://travis-ci.org/ClearcodeHQ/mirakuru.svg?branch=v2.1.1 +.. image:: https://travis-ci.org/ClearcodeHQ/mirakuru.svg?branch=v2.1.2 :target: https://travis-ci.org/ClearcodeHQ/mirakuru :alt: Tests -.. image:: https://coveralls.io/repos/ClearcodeHQ/mirakuru/badge.png?branch=v2.1.1 - :target: https://coveralls.io/r/ClearcodeHQ/mirakuru?branch=v2.1.1 +.. image:: https://coveralls.io/repos/ClearcodeHQ/mirakuru/badge.png?branch=v2.1.2 + :target: https://coveralls.io/r/ClearcodeHQ/mirakuru?branch=v2.1.2 :alt: Coverage Status diff --git a/setup.py b/setup.py index 56870894..b00f7c13 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ def read(fname): setup( name='mirakuru', - version='2.1.1', + version='2.1.2', description='Process executor for tests.', long_description=( read('README.rst') + '\n\n' + read('CHANGES.rst') diff --git a/src/mirakuru/__init__.py b/src/mirakuru/__init__.py index 33c30c0d..489a1ee5 100644 --- a/src/mirakuru/__init__.py +++ b/src/mirakuru/__init__.py @@ -33,7 +33,7 @@ ProcessExitedWithError, ) -__version__ = '2.1.1' +__version__ = '2.1.2' __all__ = ( 'Executor',