# HG changeset patch # User Thierry Florac # Date 1605281414 -3600 # Node ID 181e3bb4bda34bccedcf788da86995944e6d19b8 # Parent 98b00191ce4f578dcfddfa57bdad250927295db9 Version 0.1.38 diff -r 98b00191ce4f -r 181e3bb4bda3 buildout.cfg --- a/buildout.cfg Fri Nov 13 12:52:53 2020 +0100 +++ b/buildout.cfg Fri Nov 13 16:30:14 2020 +0100 @@ -65,4 +65,4 @@ eggs = pyams_utils [test] [versions] -pyams_utils = 0.1.37 +pyams_utils = 0.1.38 diff -r 98b00191ce4f -r 181e3bb4bda3 docs/HISTORY.txt --- a/docs/HISTORY.txt Fri Nov 13 12:52:53 2020 +0100 +++ b/docs/HISTORY.txt Fri Nov 13 16:30:14 2020 +0100 @@ -1,6 +1,13 @@ Changelog ========= +0.1.38 +------ + - added arguments to "find_objects_matching"/"find_objects_providing" functions, to be able to + get depth of found items + - updated "get_text_start" function to return the initial argument value when provided length + is negative + 0.1.37 ------ - added "pyams_utils.date.get_timestamp(context)" function diff -r 98b00191ce4f -r 181e3bb4bda3 setup.py --- a/setup.py Fri Nov 13 12:52:53 2020 +0100 +++ b/setup.py Fri Nov 13 16:30:14 2020 +0100 @@ -25,7 +25,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.37' +version = '0.1.38' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [ diff -r 98b00191ce4f -r 181e3bb4bda3 src/pyams_utils.egg-info/PKG-INFO --- a/src/pyams_utils.egg-info/PKG-INFO Fri Nov 13 12:52:53 2020 +0100 +++ b/src/pyams_utils.egg-info/PKG-INFO Fri Nov 13 16:30:14 2020 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyams-utils -Version: 0.1.37 +Version: 0.1.38 Summary: Utility functions and classes for PyAMS Home-page: http://www.ztfy.org Author: Thierry Florac @@ -51,6 +51,13 @@ Changelog ========= + 0.1.38 + ------ + - added arguments to "find_objects_matching"/"find_objects_providing" functions, to be able to + get depth of found items + - updated "get_text_start" function to return the initial argument value when provided length + is negative + 0.1.37 ------ - added "pyams_utils.date.get_timestamp(context)" function