aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/__init__.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2009-05-05 23:29:26 -0400
committerWaylan Limberg <waylan@gmail.com>2009-05-05 23:29:26 -0400
commit3595679ef7e474e07734d573205e75d04034eb88 (patch)
treed9dd3d40dd5dce1686114f16aaac7139a2978887 /markdown/__init__.py
parent6d972b91d30d6e314fee111354b98ed4130eebe6 (diff)
downloadmarkdown-3595679ef7e474e07734d573205e75d04034eb88.tar.gz
markdown-3595679ef7e474e07734d573205e75d04034eb88.tar.bz2
markdown-3595679ef7e474e07734d573205e75d04034eb88.zip
Fixed commandline issues and upped version to 2.0.1-beta. Renamed markdown.py to markdown and added a markdown.bat wrapper for win32. Also had to put markdown script in a bin dir so it doesn't clash with the markdown lib dir because win32 doesn't allow a dir and file of the same name in same parent dir.
Diffstat (limited to 'markdown/__init__.py')
-rw-r--r--markdown/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/markdown/__init__.py b/markdown/__init__.py
index 0d1c504..e0b356d 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"
-version_info = (2,0,0, "Final")
+version = "2.0.1-beta"
+version_info = (2,0,1, "beta")
import re
import codecs