# HG changeset patch # User Thierry Florac # Date 1545053549 -3600 # Node ID f9b5bbd770c8db008ad3b1d522052f4c24979e95 # Parent 1b1ef6c6e165ff877e1cb8b12ea7a88de73351ab Version 0.1.26 diff -r 1b1ef6c6e165 -r f9b5bbd770c8 buildout.cfg --- a/buildout.cfg Fri Dec 14 23:36:05 2018 +0100 +++ b/buildout.cfg Mon Dec 17 14:32:29 2018 +0100 @@ -96,4 +96,4 @@ eggs = pyams_utils [test] [versions] -pyams_utils = 0.1.25 +pyams_utils = 0.1.26 diff -r 1b1ef6c6e165 -r f9b5bbd770c8 docs/HISTORY.txt --- a/docs/HISTORY.txt Fri Dec 14 23:36:05 2018 +0100 +++ b/docs/HISTORY.txt Mon Dec 17 14:32:29 2018 +0100 @@ -1,6 +1,10 @@ Changelog ========= +0.1.26 +------ + - added Markdown text renderer + 0.1.25 ------ - updated "factory_config" decorator so that decorated class automatically implements the interface provided by factory diff -r 1b1ef6c6e165 -r f9b5bbd770c8 setup.py --- a/setup.py Fri Dec 14 23:36:05 2018 +0100 +++ b/setup.py Mon Dec 17 14:32:29 2018 +0100 @@ -25,7 +25,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.25' +version = '0.1.26' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [ @@ -68,6 +68,7 @@ 'chameleon', 'docutils', 'httplib2', + 'markdown', 'persistent', 'pyramid', 'pyramid_zodbconn', diff -r 1b1ef6c6e165 -r f9b5bbd770c8 src/pyams_utils.egg-info/PKG-INFO --- a/src/pyams_utils.egg-info/PKG-INFO Fri Dec 14 23:36:05 2018 +0100 +++ b/src/pyams_utils.egg-info/PKG-INFO Mon Dec 17 14:32:29 2018 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyams-utils -Version: 0.1.25 +Version: 0.1.26 Summary: Utility functions and classes for PyAMS Home-page: http://www.ztfy.org Author: Thierry Florac @@ -47,6 +47,10 @@ Changelog ========= + 0.1.26 + ------ + - added Markdown text renderer + 0.1.25 ------ - updated "factory_config" decorator so that decorated class automatically implements the interface provided by factory diff -r 1b1ef6c6e165 -r f9b5bbd770c8 src/pyams_utils.egg-info/requires.txt --- a/src/pyams_utils.egg-info/requires.txt Fri Dec 14 23:36:05 2018 +0100 +++ b/src/pyams_utils.egg-info/requires.txt Mon Dec 17 14:32:29 2018 +0100 @@ -4,6 +4,7 @@ chameleon docutils httplib2 +markdown persistent pyramid pyramid_zodbconn