aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--markdown/__init__.py4
-rwxr-xr-xsetup.py2
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
diff --git a/setup.py b/setup.py
index a8814b5..5812405 100755
--- a/setup.py
+++ b/setup.py
@@ -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