From 66da35b594079ecb4b2f50861532acf24d5a22f9 Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Tue, 12 Jun 2018 16:31:24 +0200 Subject: [PATCH] 0.12.3 --- CHANGES.rst | 5 +++++ tomodachi/__version__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 6082f812b..fc37c758e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changes ======= +0.12.3 (2018-06-12) +------------------- +- Improved type hinting support. + + 0.12.2 (2018-06-12) ------------------- - Added stubs for type hinting via tools like ``mypy``. diff --git a/tomodachi/__version__.py b/tomodachi/__version__.py index 04d37f575..b8fa195aa 100644 --- a/tomodachi/__version__.py +++ b/tomodachi/__version__.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 12, 2) +__version_info__ = (0, 12, 3) __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__":