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__":