# HG changeset patch # User Thierry Florac # Date 1561568427 -7200 # Node ID 678779e9508ae69cca2888012a35b2b8d2458a88 # Parent acaa49debeb6be3aad24ff427a891a32e448e318 Version 0.1.10 diff -r acaa49debeb6 -r 678779e9508a buildout.cfg --- a/buildout.cfg Wed Jun 26 18:56:18 2019 +0200 +++ b/buildout.cfg Wed Jun 26 19:00:27 2019 +0200 @@ -64,4 +64,4 @@ eggs = pyams_notify [test] [versions] -pyams_notify = 0.1.9 +pyams_notify = 0.1.10 diff -r acaa49debeb6 -r 678779e9508a docs/HISTORY.txt --- a/docs/HISTORY.txt Wed Jun 26 18:56:18 2019 +0200 +++ b/docs/HISTORY.txt Wed Jun 26 19:00:27 2019 +0200 @@ -1,6 +1,11 @@ History ======= +0.1.10 +------ + - use request's host to filter notifications by server; this can be used when several + PyAMS instances are connected to a single websockets server + 0.1.9 ----- - handle errors in websockets response diff -r acaa49debeb6 -r 678779e9508a setup.py --- a/setup.py Wed Jun 26 18:56:18 2019 +0200 +++ b/setup.py Wed Jun 26 19:00:27 2019 +0200 @@ -23,7 +23,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.9' +version = '0.1.10' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [] diff -r acaa49debeb6 -r 678779e9508a src/pyams_notify.egg-info/PKG-INFO --- a/src/pyams_notify.egg-info/PKG-INFO Wed Jun 26 18:56:18 2019 +0200 +++ b/src/pyams_notify.egg-info/PKG-INFO Wed Jun 26 19:00:27 2019 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyams-notify -Version: 0.1.9 +Version: 0.1.10 Summary: PyAMS notifications management package Home-page: http://hg.ztfy.org/pyams/pyams_notify Author: Thierry Florac @@ -21,6 +21,11 @@ History ======= + 0.1.10 + ------ + - use request's host to filter notifications by server; this can be used when several + PyAMS instances are connected to a single websockets server + 0.1.9 ----- - handle errors in websockets response