diff options
author | Waylan Limberg <waylan@gmail.com> | 2011-08-03 22:35:27 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2011-08-03 22:35:27 -0400 |
commit | 2f0af63382e0389d9827787017db729bd7395eb4 (patch) | |
tree | de688a3a9001d99045d1c5cf20508ce882d9fde9 | |
parent | 47d8d4c175b26f71c3c9341cb5b50910359b124c (diff) | |
download | markdown-2.1.0.alpha.tar.gz markdown-2.1.0.alpha.tar.bz2 markdown-2.1.0.alpha.zip |
Set version to '2.1.0.alpha'.2.1.0.alpha
-rw-r--r-- | markdown/__init__.py | 4 | ||||
-rwxr-xr-x | setup.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/markdown/__init__.py b/markdown/__init__.py index 0291891..f7957a5 100644 --- a/markdown/__init__.py +++ b/markdown/__init__.py @@ -30,8 +30,8 @@ Copyright 2004 Manfred Stienstra (the original version) License: BSD (see LICENSE for details). """ -version = "2.1.0" -version_info = (2,1,0, "Dev") +version = "2.1.0.alpha" +version_info = (2,1,0, "alpha") import re import codecs @@ -15,7 +15,7 @@ except ImportError: raise ImportError("build_py_2to3 is required to build in Python 3.x.") from distutils.command.build_py import build_py -version = '2.1.0.Dev' +version = '2.1.0.alpha' # The command line script name. Currently set to "markdown_py" so as not to # conflict with the perl implimentation (which uses "markdown"). We can't use |