Skip to content

Commit

Permalink
0.12.6
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaspuff committed Jul 2, 2018
1 parent c72b4b5 commit ac20360
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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**)


Expand Down
2 changes: 1 addition & 1 deletion tomodachi/__version__.py
Original file line number Diff line number Diff line change
@@ -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__":
Expand Down

0 comments on commit ac20360

Please sign in to comment.