# HG changeset patch # User Thierry Florac # Date 1561568456 -7200 # Node ID e2ce53e66fc9e316eee4a4760b67dc9309dc2df8 # Parent bdb57ba752453f4ae19167cee1502845bf02847e Version 0.2.1 diff -r bdb57ba75245 -r e2ce53e66fc9 buildout.cfg --- a/buildout.cfg Wed Jun 26 18:58:58 2019 +0200 +++ b/buildout.cfg Wed Jun 26 19:00:56 2019 +0200 @@ -56,4 +56,4 @@ eggs = pyams_notify_ws [test] [versions] -pyams_notify_ws = 0.2.0 +pyams_notify_ws = 0.2.1 diff -r bdb57ba75245 -r e2ce53e66fc9 docs/HISTORY.txt --- a/docs/HISTORY.txt Wed Jun 26 18:58:58 2019 +0200 +++ b/docs/HISTORY.txt Wed Jun 26 19:00:56 2019 +0200 @@ -1,6 +1,10 @@ History ======= +0.2.1 +----- + - set host in subscription request, and use it to filter notifications + 0.2.0 ----- - added authentication check while subscribing to notifications. diff -r bdb57ba75245 -r e2ce53e66fc9 setup.py --- a/setup.py Wed Jun 26 18:58:58 2019 +0200 +++ b/setup.py Wed Jun 26 19:00:56 2019 +0200 @@ -23,7 +23,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.2.0' +version = '0.2.1' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [] diff -r bdb57ba75245 -r e2ce53e66fc9 src/pyams_notify_ws.egg-info/PKG-INFO --- a/src/pyams_notify_ws.egg-info/PKG-INFO Wed Jun 26 18:58:58 2019 +0200 +++ b/src/pyams_notify_ws.egg-info/PKG-INFO Wed Jun 26 19:00:56 2019 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyams-notify-ws -Version: 0.2.0 +Version: 0.2.1 Summary: PyAMS notifications server management package Home-page: http://hg.ztfy.org/pyams/pyams_notify_ws Author: Thierry Florac @@ -24,6 +24,10 @@ History ======= + 0.2.1 + ----- + - set host in subscription request, and use it to filter notifications + 0.2.0 ----- - added authentication check while subscribing to notifications.