aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2009-05-19 21:59:23 -0400
committerWaylan Limberg <waylan@gmail.com>2009-05-19 21:59:23 -0400
commitb5036e91f7b9294cbe1777e3d4751cec5064c029 (patch)
tree88db1f05d36123b87989263ea16d40d712e344d1
parent45e4b6fe5ce80a04987a5dc688a986d8165bf354 (diff)
downloadmarkdown-b5036e91f7b9294cbe1777e3d4751cec5064c029.tar.gz
markdown-b5036e91f7b9294cbe1777e3d4751cec5064c029.tar.bz2
markdown-b5036e91f7b9294cbe1777e3d4751cec5064c029.zip
Upped version to 2.0.1-Final and added release notes.2.0.1
-rw-r--r--docs/release-2.0.1.txt16
-rw-r--r--docs/release-2.0.txt (renamed from docs/release.txt)0
-rw-r--r--markdown/__init__.py4
3 files changed, 18 insertions, 2 deletions
diff --git a/docs/release-2.0.1.txt b/docs/release-2.0.1.txt
new file mode 100644
index 0000000..e5946b2
--- /dev/null
+++ b/docs/release-2.0.1.txt
@@ -0,0 +1,16 @@
+Python-Markdown 2.0.1 Release Notes
+===================================
+
+Python-Markdown 2.0.1 is a bug-fix release. No new features have been added.
+Most notably, various issues with the command line script have been fixed.
+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.
+
+Backwards-incompatible Changes
+------------------------------
+
+Due to various complications in how Python handles command line scripts in
+differance systems and with differant installation tools, we were forced to
+rename the commandline script to ``markdown`` (no ".py"). A matching batch
+script will get installed on Windows. Any shell scripts which call
+``markdown.py`` will need to be altered to call ``markdown`` instead.
diff --git a/docs/release.txt b/docs/release-2.0.txt
index b1f71ad..b1f71ad 100644
--- a/docs/release.txt
+++ b/docs/release-2.0.txt
diff --git a/markdown/__init__.py b/markdown/__init__.py
index d1afe81..641cbab 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-beta"
-version_info = (2,0,1, "beta")
+version = "2.0.1"
+version_info = (2,0,1, "Final")
import re
import codecs