From c84c8280cd71aef3191529ba286ebe85714365b2 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Mon, 30 Mar 2009 02:33:00 -0400 Subject: Upped version to 2.0 and a few edits to release notes. --- docs/release.txt | 3 +++ 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 -- cgit v1.2.3