release preparations
2 files changed, 10 insertions(+), 1 deletions(-)

M README.rst
M setup.py
M README.rst +9 -0
@@ 241,6 241,15 @@ When done, the following scripts can be 
 Changes
 -------------------------------------------------------------------------------
 
+Version 0.1.2
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+- Explicitly require *Python Markdown* 2.0.3 (this is a temporary fix until
+  *markowik* correctly works with *Python Markdown* 2.1). **Note:** If this
+  conflicts with requirements of other Python packages, run *markowik* in its
+  own buildout as described above.
+- Minor documentation tweaks.
+
 Version 0.1.1
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 

          
M setup.py +1 -1
@@ 4,7 4,7 @@ import sys, os
 here = os.path.abspath(os.path.dirname(__file__))
 README = open(os.path.join(here, 'README.rst')).read()
 
-version = '0.1.1'
+version = '0.1.2'
 
 install_requires = [
     'markdown==2.0.3', 'argparse',