diff options
author | Waylan Limberg <waylan@dev.(none)> | 2009-07-31 07:12:14 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@dev.(none)> | 2009-07-31 07:22:12 -0400 |
commit | 93d814f0b66a413cbd4a4dc3f74c75ce183e69ac (patch) | |
tree | 15aa0cd5826676e09778a682324d95ec71cf2dc4 | |
parent | 83ff480406e8b428186daed9e7372188e62a55be (diff) | |
download | markdown-93d814f0b66a413cbd4a4dc3f74c75ce183e69ac.tar.gz markdown-93d814f0b66a413cbd4a4dc3f74c75ce183e69ac.tar.bz2 markdown-93d814f0b66a413cbd4a4dc3f74c75ce183e69ac.zip |
Upped version to 2.0.2-Final and added release notes.
-rw-r--r-- | docs/CHANGE_LOG | 6 | ||||
-rw-r--r-- | docs/release-2.0.2.txt | 9 | ||||
-rw-r--r-- | markdown/__init__.py | 4 |
3 files changed, 17 insertions, 2 deletions
diff --git a/docs/CHANGE_LOG b/docs/CHANGE_LOG index 1b4af45..e005ff8 100644 --- a/docs/CHANGE_LOG +++ b/docs/CHANGE_LOG @@ -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. diff --git a/docs/release-2.0.2.txt b/docs/release-2.0.2.txt new file mode 100644 index 0000000..8ae9a3d --- /dev/null +++ b/docs/release-2.0.2.txt @@ -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. + diff --git a/markdown/__init__.py b/markdown/__init__.py index 235c90f..36f4f2c 100644 --- a/markdown/__init__.py +++ b/markdown/__init__.py @@ -39,8 +39,8 @@ Copyright 2004 Manfred Stienstra (the original version) 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 |