Skip to content

Commit e4bb8ab

Browse files
author
Waylan Limberg
committed
Release 2.1.1. A bugfix release.
1 parent a21c320 commit e4bb8ab

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

docs/release-2.1.1.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Python-Markdown 2.1.1 Release Notes
2+
===================================
3+
4+
Python-Markdown 2.1.1 is a bug-fix release. No new features have been added.
5+
Most notably, a bug which caused raw HTML paring to run __very__ slowly has
6+
been fixed along with a few bugs which caused the parser to raise exceptions
7+
while parsing. For a full list of changes, see the git log.

markdown/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@
2222
2323
2424
25-
Copyright 2007, 2008 The Python Markdown Project (v. 1.7 and later)
25+
Copyright 2007-2012 The Python Markdown Project (v. 1.7 and later)
2626
Copyright 200? Django Software Foundation (OrderedDict implementation)
2727
Copyright 2004, 2005, 2006 Yuri Takhteyev (v. 0.2-1.6b)
2828
Copyright 2004 Manfred Stienstra (the original version)
2929
3030
License: BSD (see LICENSE for details).
3131
"""
3232

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

3636
import re
3737
import codecs

setup.py

Lines changed: 1 addition & 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'
19+
version = '2.1.1'
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

0 commit comments

Comments
 (0)