--- 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
--- 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
--- 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',
--- 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
--- 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