# HG changeset patch # User Thierry Florac # Date 1547822012 -3600 # Node ID 8b0595f306fd8c9a5f494873c8399ef0a97289d0 # Parent a7d712e514a0402d4a03610eb6f9dfc6c3ee68fa Version 0.1.30 diff -r a7d712e514a0 -r 8b0595f306fd buildout.cfg --- a/buildout.cfg Fri Jan 18 13:57:58 2019 +0100 +++ b/buildout.cfg Fri Jan 18 15:33:32 2019 +0100 @@ -96,4 +96,4 @@ eggs = pyams_utils [test] [versions] -pyams_utils = 0.1.29 +pyams_utils = 0.1.30 diff -r a7d712e514a0 -r 8b0595f306fd docs/HISTORY.txt --- a/docs/HISTORY.txt Fri Jan 18 13:57:58 2019 +0100 +++ b/docs/HISTORY.txt Fri Jan 18 15:33:32 2019 +0100 @@ -1,6 +1,11 @@ Changelog ========= +0.1.30 +------ + - updated "copy_request" function to keep track of request's "root" attribute + - added label to HTML renderers which can be selected by end-users + 0.1.29 ------ - updated "check_request()" function to be able to use currently registered request factory (instead of PyAMSRequest) diff -r a7d712e514a0 -r 8b0595f306fd setup.py --- a/setup.py Fri Jan 18 13:57:58 2019 +0100 +++ b/setup.py Fri Jan 18 15:33:32 2019 +0100 @@ -25,7 +25,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.29' +version = '0.1.30' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [ diff -r a7d712e514a0 -r 8b0595f306fd src/pyams_utils.egg-info/PKG-INFO --- a/src/pyams_utils.egg-info/PKG-INFO Fri Jan 18 13:57:58 2019 +0100 +++ b/src/pyams_utils.egg-info/PKG-INFO Fri Jan 18 15:33:32 2019 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyams-utils -Version: 0.1.29 +Version: 0.1.30 Summary: Utility functions and classes for PyAMS Home-page: http://www.ztfy.org Author: Thierry Florac @@ -47,6 +47,11 @@ Changelog ========= + 0.1.30 + ------ + - updated "copy_request" function to keep track of request's "root" attribute + - added label to HTML renderers which can be selected by end-users + 0.1.29 ------ - updated "check_request()" function to be able to use currently registered request factory (instead of PyAMSRequest)