# HG changeset patch # User Thierry Florac # Date 1410778242 -7200 # Node ID acc0d940133ff7398b4c32b44c7a59215c489d3a # Parent 0ab97369250442eb78ce8dea0e18c5b9ff787e04 Version 0.4.12 diff -r 0ab973692504 -r acc0d940133f buildout.cfg --- a/buildout.cfg Mon Sep 15 12:40:10 2014 +0200 +++ b/buildout.cfg Mon Sep 15 12:50:42 2014 +0200 @@ -40,4 +40,4 @@ eggs = ztfy.utils [test] [versions] -ztfy.utils = 0.4.11 +ztfy.utils = 0.4.12 diff -r 0ab973692504 -r acc0d940133f docs/HISTORY.txt --- a/docs/HISTORY.txt Mon Sep 15 12:40:10 2014 +0200 +++ b/docs/HISTORY.txt Mon Sep 15 12:50:42 2014 +0200 @@ -1,6 +1,10 @@ Changelog ========= +0.4.12 +------ + - added "getClientFromURL()" function to HTTP client module to build an HTTP client from a simple URL + 0.4.11 ------ - added "encode" and "decode" functions in "ztfy.utils.unicode" module (with updated doctests) diff -r 0ab973692504 -r acc0d940133f setup.py --- a/setup.py Mon Sep 15 12:40:10 2014 +0200 +++ b/setup.py Mon Sep 15 12:50:42 2014 +0200 @@ -25,7 +25,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.4.11' +version = '0.4.12' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [ @@ -92,6 +92,7 @@ 'zope.session', 'zope.tales', 'zope.traversing', + 'zopyx.txng3.core', 'ztfy.jqueryui >= 0.7.0', ], entry_points=""" diff -r 0ab973692504 -r acc0d940133f src/ztfy.utils.egg-info/PKG-INFO --- a/src/ztfy.utils.egg-info/PKG-INFO Mon Sep 15 12:40:10 2014 +0200 +++ b/src/ztfy.utils.egg-info/PKG-INFO Mon Sep 15 12:50:42 2014 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: ztfy.utils -Version: 0.4.11 +Version: 0.4.12 Summary: ZTFY utility functions and classes for Zope3 Home-page: http://www.ztfy.org Author: Thierry Florac @@ -41,6 +41,10 @@ Changelog ========= + 0.4.12 + ------ + - added "getClientFromURL()" function to HTTP client module to build an HTTP client from a simple URL + 0.4.11 ------ - added "encode" and "decode" functions in "ztfy.utils.unicode" module (with updated doctests) diff -r 0ab973692504 -r acc0d940133f src/ztfy.utils.egg-info/requires.txt --- a/src/ztfy.utils.egg-info/requires.txt Mon Sep 15 12:40:10 2014 +0200 +++ b/src/ztfy.utils.egg-info/requires.txt Mon Sep 15 12:50:42 2014 +0200 @@ -30,6 +30,7 @@ zope.session zope.tales zope.traversing +zopyx.txng3.core ztfy.jqueryui >= 0.7.0 [test]