Skip to content

Commit

Permalink
Upped version to 2.0.1-Final and added release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Waylan Limberg committed May 20, 2009
1 parent 45e4b6f commit b5036e9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions docs/release-2.0.1.txt
Original file line number Diff line number Diff line change
@@ -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.
File renamed without changes.
4 changes: 2 additions & 2 deletions markdown/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
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
Expand Down

0 comments on commit b5036e9

Please sign in to comment.