summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2009-03-30 02:33:00 -0400
committerWaylan Limberg <waylan@gmail.com>2009-03-30 02:33:00 -0400
commitc84c8280cd71aef3191529ba286ebe85714365b2 (patch)
tree73609afc9be3110bb5fb5caa589613cd1f9d9752
parentb846f2ce2c3be808f74e594ce301a710b1934e85 (diff)
downloadpython-markdown-c84c8280cd71aef3191529ba286ebe85714365b2.tar.gz
Upped version to 2.0 and a few edits to release notes.2.0-Final
-rw-r--r--docs/release.txt3
-rw-r--r--markdown/__init__.py4
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