aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2011-11-24 15:09:51 -0500
committerWaylan Limberg <waylan@gmail.com>2011-11-24 15:09:51 -0500
commit2e3830b9bf3a0829db7a5d04f731b5019d28cc65 (patch)
tree3f4c12190a9fe9a19020f60c322dfb2e7f7b1cea
parentbcdd7b2bf340db25963312b860d43aa4d9a1a146 (diff)
downloadmarkdown-2e3830b9bf3a0829db7a5d04f731b5019d28cc65.tar.gz
markdown-2e3830b9bf3a0829db7a5d04f731b5019d28cc65.tar.bz2
markdown-2e3830b9bf3a0829db7a5d04f731b5019d28cc65.zip
Version 2.1.0-Final2.1.0.final
-rw-r--r--docs/release-2.1.0.md9
-rw-r--r--markdown/__init__.py4
-rwxr-xr-xsetup.py3
3 files changed, 7 insertions, 9 deletions
diff --git a/docs/release-2.1.0.md b/docs/release-2.1.0.md
index fdfee9b..f6c203b 100644
--- a/docs/release-2.1.0.md
+++ b/docs/release-2.1.0.md
@@ -1,15 +1,12 @@
-Python-Markdown 2.1.0-Beta Release Notes
-========================================
+Python-Markdown 2.1.0 Release Notes
+===================================
-We are pleased to release Python-Markdown 2.1-Beta which makes many
+We are pleased to release Python-Markdown 2.1 which makes many
improvements on 2.0. In fact, we consider 2.1 to be what 2.0 should have been.
While 2.1 consists mostly of bug fixes, bringing Python-Markdown more inline
with other implementations, some internal improvements were made to the parser,
a few new builtin extensions were added, and HTML5 support was added.
-Please be aware that Python-Markdown 2.1-Beta is *beta* software and is not
-considered production ready pending the release of 2.1-Final.
-
Python-Markdown supports Python versions 2.4, 2.5, 2.6, 2.7, 3.1, and 3.2 out
of the box. In fact, the same codebase installs on Python 3.1 and 3.2 with no
extra work by the end user.
diff --git a/markdown/__init__.py b/markdown/__init__.py
index 41eacf6..5764c60 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.beta"
-version_info = (2,1,0, "beta")
+version = "2.1.0"
+version_info = (2,1,0, "final")
import re
import codecs
diff --git a/setup.py b/setup.py
index 856366e..278703a 100755
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,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.beta'
+version = '2.1.0'
# 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
@@ -162,6 +162,7 @@ data = dict(
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
+ 'Programming Language :: Python :: 3.2',
'Topic :: Communications :: Email :: Filters',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
'Topic :: Internet :: WWW/HTTP :: Site Management',