From 4f26ff23755c5cfeaac37d34c6dec9292ebc4ca9 Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Tue, 12 Jun 2018 15:44:59 +0200 Subject: [PATCH] 0.12.2 --- CHANGES.rst | 5 +++++ tomodachi/__version__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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__":