Skip to content

Commit f0c5b71

Browse files
author
Waylan Limberg
committed
Upped version to 2.5.1
Also removed an inacurate statement in the 2.5 release notes.
1 parent 6bc119f commit f0c5b71

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

docs/change_log.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ next_url: release-2.5.html
77
Python-Markdown Changelog
88
=========================
99

10-
Sep 12, 2014: Released version 2.5.0 ([Notes](release-2.5.html))
10+
Sept 26, 2014: Released version 2.5.1 (a bugfix release).
1111

12-
Feb 16, 2014: Released version 2.4.0 ([Notes](release-2.4.html))
12+
Sept 12, 2014: Released version 2.5.0 ([Notes](release-2.5.html)).
13+
14+
Feb 16, 2014: Released version 2.4.0 ([Notes](release-2.4.html)).
1315

1416
Mar 22, 2013: Released version 2.3.1 (a bugfix release).
1517

docs/release-2.5.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@ Backwards-incompatible Changes
1616
------------------------------
1717

1818
* Python-Markdown no longer supports Python version 2.6. You must be using Python
19-
versions 2.7, 3.2, 3.3, or 3.4. While Python-Markdown is no longer tested against
20-
Python 2.6, you may be able to get it working if you install a copy of [importlib]
21-
which has been backported for Python 2.6. However, the developers of Python-Markdown
22-
offer no guarentees in that situation.
19+
versions 2.7, 3.2, 3.3, or 3.4.
2320

2421
[importlib]: https://pypi.python.org/pypi/importlib
2522

markdown/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# (major, minor, micro, alpha/beta/rc/final, #)
66
# (1, 1, 2, 'alpha', 0) => "1.1.2.dev"
77
# (1, 2, 0, 'beta', 2) => "1.2b2"
8-
version_info = (2, 5, 0, 'final', 0)
8+
version_info = (2, 5, 1, 'final', 0)
99

1010
def _get_version():
1111
" Returns a PEP 386-compliant version number from version_info. "

0 commit comments

Comments
 (0)