Skip to content

Commit e1276cc

Browse files
author
Waylan Limberg
committed
Upped version to 2.0.2-Final and added release notes.
1 parent f7456a3 commit e1276cc

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

docs/CHANGE_LOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
PYTHON MARKDOWN CHANGELOG
22
=========================
33

4+
Sept 28, 2009: Released version 2.0.2-Final.
5+
6+
May 20, 2009: Released version 2.0.1-Final.
7+
8+
Mar 30, 2009: Released version 2.0-Final.
9+
410
Mar 8, 2009: Release Candidate 2.0-rc-1.
511

612
Feb 2009: Added support for multi-level lists to new Blockprocessors.

docs/release-2.0.2.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Python-Markdown 2.0.2 Release Notes
2+
===================================
3+
4+
Python-Markdown 2.0.2 is a bug-fix release. No new features have been added.
5+
Most notably, the setup script has been updated to include a dependency on
6+
ElementTree on older versions of Python (< 2.5). There have also been a few
7+
fixes for minor parsing bugs in some edge cases. For a full list of changes,
8+
see the git log.
9+

markdown/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
License: BSD (see docs/LICENSE for details).
4040
"""
4141

42-
version = "2.0.1"
43-
version_info = (2,0,1, "Final")
42+
version = "2.0.2"
43+
version_info = (2,0,2, "Final")
4444

4545
import re
4646
import codecs

0 commit comments

Comments
 (0)