diff --git a/CHANGES.rst b/CHANGES.rst index cf386cc64..6082f812b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changes ======= +0.12.2 (2018-06-12) +------------------- +- Added stubs for type hinting via tools like ``mypy``. + + 0.12.1 (2018-06-07) ------------------- - Added complete support for ``aiohttp`` 3.3.x release and diff --git a/tomodachi/__version__.py b/tomodachi/__version__.py index 85b4e69e2..04d37f575 100644 --- a/tomodachi/__version__.py +++ b/tomodachi/__version__.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 12, 1) +__version_info__ = (0, 12, 2) __version__ = ''.join(['.{}'.format(str(n)) if type(n) is int else str(n) for n in __version_info__]).replace('.', '', 1 if type(__version_info__[0]) is int else 0) if __name__ == "__main__":