From ac203604c94fd8db11782a39ce3ece46775fa699 Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Mon, 2 Jul 2018 23:48:59 +0200 Subject: [PATCH] 0.12.6 --- CHANGES.rst | 12 ++++++++++-- tomodachi/__version__.py | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index bf1c2063b..b2a6074ef 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,18 @@ Changes ======= +0.12.6 (2018-07-02) +------------------- +- Additional compatibility for Python 3.7 support including CI testing for + Python 3.7. + +- Improved linting for type hinted functions. + + 0.12.5 (2018-06-27) ------------------- -- Messages via SNS+SQS or AMQP over 60000 bytes as ProtoBuf will now be sent - in a gzipped base64 encoded format to allow for larger limits and lower +- Messages via SNS+SQS or AMQP over 60000 bytes as ProtoBuf will now be sent + in a gzipped base64 encoded format to allow for larger limits and lower potential SNS costs due to multiplexed messaging. (github: **smaaland**) diff --git a/tomodachi/__version__.py b/tomodachi/__version__.py index 940b68af1..e63b41258 100644 --- a/tomodachi/__version__.py +++ b/tomodachi/__version__.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 12, 5) +__version_info__ = (0, 12, 6) __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__":