# HG changeset patch # User Oben Sonne # Date 1327353661 -3600 # Mon Jan 23 22:21:01 2012 +0100 # Node ID fada9393d5c88efa327b2134da38519bf1432a5d # Parent ce776a6ce0f5c343a5da43375575a5d517c71ff4 release preparations diff --git a/README.rst b/README.rst --- a/README.rst +++ b/README.rst @@ -77,6 +77,7 @@ `Caveats`_. .. _`Python Markdown`: http://www.freewisdom.org/projects/python-markdown/ +.. _`PyMD`: http://www.freewisdom.org/projects/python-markdown/ Programmatic ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -241,11 +242,20 @@ Changes ------------------------------------------------------------------------------- +Version 0.2 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Markowik now supports (and requires) `PyMD`_ ≥ 2.1. Next to minor API changes + PyMD 2.1 also had some changes and improvements in its conversion process + -- for details, `check how tests have been adjusted`__ for PyMD 2.1. + +.. __: http://code.google.com/p/markowik/source/list?r=0.2 + 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 +- Explicitly require `PyMD`_ 2.0.3 (this is a temporary fix until + *markowik* correctly works with PyMD 2.1). **Note:** If this conflicts with requirements of other Python packages, run *markowik* in its own buildout as described above. - Minor documentation tweaks. diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() -version = '0.1.2' +version = '0.2' install_requires = [ 'markdown>=2.1', 'argparse',