Skip to content

Commit 2e3830b

Browse files
author
Waylan Limberg
committed
Version 2.1.0-Final
1 parent bcdd7b2 commit 2e3830b

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

docs/release-2.1.0.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
Python-Markdown 2.1.0-Beta Release Notes
2-
========================================
1+
Python-Markdown 2.1.0 Release Notes
2+
===================================
33

4-
We are pleased to release Python-Markdown 2.1-Beta which makes many
4+
We are pleased to release Python-Markdown 2.1 which makes many
55
improvements on 2.0. In fact, we consider 2.1 to be what 2.0 should have been.
66
While 2.1 consists mostly of bug fixes, bringing Python-Markdown more inline
77
with other implementations, some internal improvements were made to the parser,
88
a few new builtin extensions were added, and HTML5 support was added.
99

10-
Please be aware that Python-Markdown 2.1-Beta is *beta* software and is not
11-
considered production ready pending the release of 2.1-Final.
12-
1310
Python-Markdown supports Python versions 2.4, 2.5, 2.6, 2.7, 3.1, and 3.2 out
1411
of the box. In fact, the same codebase installs on Python 3.1 and 3.2 with no
1512
extra work by the end user.

markdown/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
License: BSD (see LICENSE for details).
3131
"""
3232

33-
version = "2.1.0.beta"
34-
version_info = (2,1,0, "beta")
33+
version = "2.1.0"
34+
version_info = (2,1,0, "final")
3535

3636
import re
3737
import codecs

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
raise ImportError("build_py_2to3 is required to build in Python 3.x.")
1717
from distutils.command.build_py import build_py
1818

19-
version = '2.1.0.beta'
19+
version = '2.1.0'
2020

2121
# The command line script name. Currently set to "markdown_py" so as not to
2222
# conflict with the perl implimentation (which uses "markdown"). We can't use
@@ -162,6 +162,7 @@ def has_docs(self):
162162
'Programming Language :: Python :: 2.7',
163163
'Programming Language :: Python :: 3',
164164
'Programming Language :: Python :: 3.1',
165+
'Programming Language :: Python :: 3.2',
165166
'Topic :: Communications :: Email :: Filters',
166167
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
167168
'Topic :: Internet :: WWW/HTTP :: Site Management',

0 commit comments

Comments
 (0)