aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--markdown/__init__.py4
-rwxr-xr-xsetup.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/markdown/__init__.py b/markdown/__init__.py
index cbf3898..ad28101 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.0.3"
-version_info = (2,0,3, "Final")
+version = "2.1.0"
+version_info = (2,0,3, "Dev")
import re
import codecs
diff --git a/setup.py b/setup.py
index ac3ff32..131ee4b 100755
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import sys, os
from distutils.core import setup
from distutils.command.install_scripts import install_scripts
-version = '2.0.3'
+version = '2.1.0.Dev'
# 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
@@ -49,10 +49,10 @@ data = dict(
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.3',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
+ 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Topic :: Communications :: Email :: Filters',