Skip to content

Commit

Permalink
0.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaspuff committed Mar 27, 2019
1 parent 2cfa806 commit 1c2fe89
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Changes
=======

0.16.2 (2019-03-27)
-------------------
- Added keyword arguments for overriding the ``topic_prefix`` and
``routing_key_prefix`` when publishing messages. Useful by for
example intermediaries that needs to publishing messages to
external services running on other environments, or services
that are otherwise confined to a prefix / environment but needs
to contact a core service, i.e. data collection, emails, etc.


0.16.1 (2019-03-21)
-------------------
- Bug fix for websocket handler functions signature inspection in
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, 16, 1)
__version_info__ = (0, 16, 2)
__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 1c2fe89

Please sign in to comment.