From a6e8e33298a522a4c4252927e920d2c40b5466d4 Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Thu, 7 Jun 2018 11:08:40 +0200 Subject: [PATCH] 0.12.1 --- CHANGES.rst | 6 ++++++ tomodachi/__version__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index aa5bf9b00..cf386cc64 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changes ======= +0.12.1 (2018-06-07) +------------------- +- Added complete support for ``aiohttp`` 3.3.x release and + ``aiobotocore`` 0.9.x releases. + + 0.12.0 (2018-05-31) ------------------- - Improved handling of imports to allow relative imports in diff --git a/tomodachi/__version__.py b/tomodachi/__version__.py index be56d348a..85b4e69e2 100644 --- a/tomodachi/__version__.py +++ b/tomodachi/__version__.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 12, 0) +__version_info__ = (0, 12, 1) __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__":