Skip to content

Commit b5036e9

Browse files
author
Waylan Limberg
committed
Upped version to 2.0.1-Final and added release notes.
1 parent 45e4b6f commit b5036e9

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

docs/release-2.0.1.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Python-Markdown 2.0.1 Release Notes
2+
===================================
3+
4+
Python-Markdown 2.0.1 is a bug-fix release. No new features have been added.
5+
Most notably, various issues with the command line script have been fixed.
6+
There have also been a few fixes for minor parsing bugs in some edge cases.
7+
For a full list of changes, see the git log.
8+
9+
Backwards-incompatible Changes
10+
------------------------------
11+
12+
Due to various complications in how Python handles command line scripts in
13+
differance systems and with differant installation tools, we were forced to
14+
rename the commandline script to ``markdown`` (no ".py"). A matching batch
15+
script will get installed on Windows. Any shell scripts which call
16+
``markdown.py`` will need to be altered to call ``markdown`` instead.
File renamed without changes.

markdown/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
License: BSD (see docs/LICENSE for details).
4040
"""
4141

42-
version = "2.0.1-beta"
43-
version_info = (2,0,1, "beta")
42+
version = "2.0.1"
43+
version_info = (2,0,1, "Final")
4444

4545
import re
4646
import codecs

0 commit comments

Comments
 (0)