diff options
-rw-r--r-- | docs/release.txt | 3 | ||||
-rw-r--r-- | markdown/__init__.py | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/docs/release.txt b/docs/release.txt index 95f0cc2..b1f71ad 100644 --- a/docs/release.txt +++ b/docs/release.txt @@ -8,6 +8,9 @@ extensions to the distribution (including an extension that mimics PHP Markdown Extra), all while maintaining backward compatibility with the end user API in version 1.7. +Python-Markdown supports Python versions 2.3, 2.4, 2.5, and 2.6. We've even +released a version converted to Python 3.0! + Backwards-incompatible Changes ------------------------------ diff --git a/markdown/__init__.py b/markdown/__init__.py index af5a2c1..0d1c504 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-rc2" -version_info = (2,0,0, "rc2") +version = "2.0" +version_info = (2,0,0, "Final") import re import codecs |