Skip to content

Commit

Permalink
Bumped version to 0.16.3 and added release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaspuff committed Aug 22, 2019
1 parent 55a16bb commit 3fd4090
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Changes
=======

0.16.3 (2019-08-23)
-------------------
- It's now possible to get the request object for websocket
handlers by adding a third argument to the invoker function.
``(self, websocket, request)`` or by specifying ``request`` as
a keyword argument in the function signature. Using the request
object it's now possible to parse browser headers and other data
sent when first opening the websocket connction.

- Updated packages for automated tests to verify that newer
dependencies still works correctly.

- Updated the dependency on ``aioamqp`` to allow ``aioamqp==0.13.x``.


0.16.2 (2019-03-27)
-------------------
- Added keyword arguments for overriding the ``topic_prefix`` and
Expand Down
2 changes: 1 addition & 1 deletion examples/docker_example/http_service/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
tomodachi==0.16.2
tomodachi==0.16.3
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, 16, 2)
__version_info__ = (0, 16, 3)
__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 3fd4090

Please sign in to comment.