aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2012-01-22 13:53:34 -0500
committerWaylan Limberg <waylan@gmail.com>2012-01-22 13:53:34 -0500
commite4bb8abf9e1149867545d03722ee59d8e6bdd339 (patch)
tree2535a9435d258ed23c7668199513f0e2036d5d2d
parenta21c320a5a6caab6c2f1ebf8974a7f0ff2019044 (diff)
downloadmarkdown-e4bb8abf9e1149867545d03722ee59d8e6bdd339.tar.gz
markdown-e4bb8abf9e1149867545d03722ee59d8e6bdd339.tar.bz2
markdown-e4bb8abf9e1149867545d03722ee59d8e6bdd339.zip
Release 2.1.1. A bugfix release.2.1.1.final
-rw-r--r--docs/release-2.1.1.md7
-rw-r--r--markdown/__init__.py6
-rwxr-xr-xsetup.py2
3 files changed, 11 insertions, 4 deletions
diff --git a/docs/release-2.1.1.md b/docs/release-2.1.1.md
new file mode 100644
index 0000000..9e1bcab
--- /dev/null
+++ b/docs/release-2.1.1.md
@@ -0,0 +1,7 @@
+Python-Markdown 2.1.1 Release Notes
+===================================
+
+Python-Markdown 2.1.1 is a bug-fix release. No new features have been added.
+Most notably, a bug which caused raw HTML paring to run __very__ slowly has
+been fixed along with a few bugs which caused the parser to raise exceptions
+while parsing. For a full list of changes, see the git log.
diff --git a/markdown/__init__.py b/markdown/__init__.py
index b06f8e1..4fb3057 100644
--- a/markdown/__init__.py
+++ b/markdown/__init__.py
@@ -22,7 +22,7 @@ Limberg](http://achinghead.com/) and [Artem Yunusov](http://blog.splyer.com).
Contact: markdown@freewisdom.org
-Copyright 2007, 2008 The Python Markdown Project (v. 1.7 and later)
+Copyright 2007-2012 The Python Markdown Project (v. 1.7 and later)
Copyright 200? Django Software Foundation (OrderedDict implementation)
Copyright 2004, 2005, 2006 Yuri Takhteyev (v. 0.2-1.6b)
Copyright 2004 Manfred Stienstra (the original version)
@@ -30,8 +30,8 @@ Copyright 2004 Manfred Stienstra (the original version)
License: BSD (see LICENSE for details).
"""
-version = "2.1.0"
-version_info = (2,1,0, "final")
+version = "2.1.1"
+version_info = (2,1,1, "final")
import re
import codecs
diff --git a/setup.py b/setup.py
index 278703a..2240463 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'
+version = '2.1.1'
# 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
f='#n234'>234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290