Skip to content

Commit

Permalink
Upped version to 2.0.2-Final and added release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Waylan Limberg committed Jul 31, 2009
1 parent f7456a3 commit e1276cc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
6 changes: 6 additions & 0 deletions docs/CHANGE_LOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
PYTHON MARKDOWN CHANGELOG
=========================

Sept 28, 2009: Released version 2.0.2-Final.

May 20, 2009: Released version 2.0.1-Final.

Mar 30, 2009: Released version 2.0-Final.

Mar 8, 2009: Release Candidate 2.0-rc-1.

Feb 2009: Added support for multi-level lists to new Blockprocessors.
Expand Down
9 changes: 9 additions & 0 deletions docs/release-2.0.2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Python-Markdown 2.0.2 Release Notes
===================================

Python-Markdown 2.0.2 is a bug-fix release. No new features have been added.
Most notably, the setup script has been updated to include a dependency on
ElementTree on older versions of Python (< 2.5). There have also been a few
fixes for minor parsing bugs in some edge cases. For a full list of changes,
see the git log.

4 changes: 2 additions & 2 deletions markdown/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
License: BSD (see docs/LICENSE for details).
"""

version = "2.0.1"
version_info = (2,0,1, "Final")
version = "2.0.2"
version_info = (2,0,2, "Final")

import re
import codecs
Expand Down

0 comments on commit e1276cc

Please sign in to comment.