Skip to content

Commit

Permalink
Version 2.1.0-Final
Browse files Browse the repository at this point in the history
  • Loading branch information
Waylan Limberg committed Nov 24, 2011
1 parent bcdd7b2 commit 2e3830b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
9 changes: 3 additions & 6 deletions docs/release-2.1.0.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions markdown/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
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
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
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
Expand Down Expand Up @@ -162,6 +162,7 @@ def has_docs(self):
'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',
Expand Down

0 comments on commit 2e3830b

Please sign in to comment.