Skip to content

Commit

Permalink
0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaspuff committed May 31, 2018
1 parent 3fca8cb commit 9fd5980
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Changes
=======

0.12.0 (2018-05-31)
-------------------
- Improved handling of imports to allow relative imports in
services and to use better error messages if the parent
package is using a reserved name.

- Preparations for ``aiohttp`` 3.3.x release which deprecates
some uses for custom router.

- Preparations for upcoming Python 3.7 release.


0.11.3 (2018-05-25)
-------------------
- Added additional function for message validation functionality.
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, 11, 3)
__version_info__ = (0, 12, 0)
__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 9fd5980

Please sign in to comment.