# HG changeset patch # User Thierry Florac # Date 1564161386 -7200 # Node ID f0a62fab5368ad947dfff31c6a2fdad343003338 # Parent e768f0e1e52f75bd23febbb2ae063b1f3d8da969 Version 0.1.33 diff -r e768f0e1e52f -r f0a62fab5368 buildout.cfg --- a/buildout.cfg Fri Jul 26 12:30:53 2019 +0200 +++ b/buildout.cfg Fri Jul 26 19:16:26 2019 +0200 @@ -89,4 +89,4 @@ eggs = pyams_utils [test] [versions] -pyams_utils = 0.1.32 +pyams_utils = 0.1.33 diff -r e768f0e1e52f -r f0a62fab5368 docs/HISTORY.txt --- a/docs/HISTORY.txt Fri Jul 26 12:30:53 2019 +0200 +++ b/docs/HISTORY.txt Fri Jul 26 19:16:26 2019 +0200 @@ -1,6 +1,15 @@ Changelog ========= +0.1.33 +------ + - added test in "relative_url" function to check if request is an instance of PyramidPublisherRequest + +0.1.32 +------ + - updated unit tests + - added Gitlab-CI integration + 0.1.31 ------ - added "boolean_iter" function and TALES extension to check if an iterator returns at least one value, without diff -r e768f0e1e52f -r f0a62fab5368 setup.py --- a/setup.py Fri Jul 26 12:30:53 2019 +0200 +++ b/setup.py Fri Jul 26 19:16:26 2019 +0200 @@ -25,7 +25,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.32' +version = '0.1.33' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [ diff -r e768f0e1e52f -r f0a62fab5368 src/pyams_utils.egg-info/PKG-INFO --- a/src/pyams_utils.egg-info/PKG-INFO Fri Jul 26 12:30:53 2019 +0200 +++ b/src/pyams_utils.egg-info/PKG-INFO Fri Jul 26 19:16:26 2019 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyams-utils -Version: 0.1.32 +Version: 0.1.33 Summary: Utility functions and classes for PyAMS Home-page: http://www.ztfy.org Author: Thierry Florac @@ -47,6 +47,15 @@ Changelog ========= + 0.1.33 + ------ + - added test in "relative_url" function to check if request is an instance of PyramidPublisherRequest + + 0.1.32 + ------ + - updated unit tests + - added Gitlab-CI integration + 0.1.31 ------ - added "boolean_iter" function and TALES extension to check if an iterator returns at least one value, without