# HG changeset patch # User Thierry Florac # Date 1558530693 -7200 # Node ID 76a03dc887120c68c793e7ba235608c8cbd2e5c7 # Parent d4e617c7e37a3bdc59444a582af1e0f3724d31ea Version 0.1.31 diff -r d4e617c7e37a -r 76a03dc88712 buildout.cfg --- a/buildout.cfg Wed May 22 14:13:06 2019 +0200 +++ b/buildout.cfg Wed May 22 15:11:33 2019 +0200 @@ -96,4 +96,4 @@ eggs = pyams_utils [test] [versions] -pyams_utils = 0.1.30.3 +pyams_utils = 0.1.31 diff -r d4e617c7e37a -r 76a03dc88712 docs/HISTORY.txt --- a/docs/HISTORY.txt Wed May 22 14:13:06 2019 +0200 +++ b/docs/HISTORY.txt Wed May 22 15:11:33 2019 +0200 @@ -1,6 +1,11 @@ Changelog ========= +0.1.31 +------ + - added "boolean_iter" function and TALES extension to check if an iterator returns at least one value, without + consuming it + 0.1.30.3 -------- - small updates in progress management diff -r d4e617c7e37a -r 76a03dc88712 setup.py --- a/setup.py Wed May 22 14:13:06 2019 +0200 +++ b/setup.py Wed May 22 15:11:33 2019 +0200 @@ -25,7 +25,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.30.3' +version = '0.1.31' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [ diff -r d4e617c7e37a -r 76a03dc88712 src/pyams_utils.egg-info/PKG-INFO --- a/src/pyams_utils.egg-info/PKG-INFO Wed May 22 14:13:06 2019 +0200 +++ b/src/pyams_utils.egg-info/PKG-INFO Wed May 22 15:11:33 2019 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyams-utils -Version: 0.1.30.3 +Version: 0.1.31 Summary: Utility functions and classes for PyAMS Home-page: http://www.ztfy.org Author: Thierry Florac @@ -47,6 +47,11 @@ Changelog ========= + 0.1.31 + ------ + - added "boolean_iter" function and TALES extension to check if an iterator returns at least one value, without + consuming it + 0.1.30.3 -------- - small updates in progress management