From d646118b9971a7a52e610571f7cf934f827aaa1b Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Sat, 19 May 2018 01:44:39 +0200 Subject: [PATCH] 0.11.2 --- CHANGES.rst | 9 +++++++++ tomodachi/__version__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 06a3aa630..db358f860 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,15 @@ Changes ======= +0.11.2 (2018-05-19) +------------------- +- Improved base documentation. + +- Improved and updated examples. + +- Type hinting corrections for examples. + + 0.11.1 (2018-05-18) ------------------- - Decorators for invoker functions already decorated with for example diff --git a/tomodachi/__version__.py b/tomodachi/__version__.py index 719be6c52..ac411dc58 100644 --- a/tomodachi/__version__.py +++ b/tomodachi/__version__.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 11, 1) +__version_info__ = (0, 11, 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__":