From f0c5b71acbc02af60a33d67c59558bb513b25e74 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Fri, 26 Sep 2014 18:35:55 -0400 Subject: Upped version to 2.5.1 Also removed an inacurate statement in the 2.5 release notes. --- docs/change_log.txt | 6 ++++-- docs/release-2.5.txt | 5 +---- markdown/__version__.py | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/docs/change_log.txt b/docs/change_log.txt index 2f1810a..de5eacc 100644 --- a/docs/change_log.txt +++ b/docs/change_log.txt @@ -7,9 +7,11 @@ next_url: release-2.5.html Python-Markdown Changelog ========================= -Sep 12, 2014: Released version 2.5.0 ([Notes](release-2.5.html)) +Sept 26, 2014: Released version 2.5.1 (a bugfix release). -Feb 16, 2014: Released version 2.4.0 ([Notes](release-2.4.html)) +Sept 12, 2014: Released version 2.5.0 ([Notes](release-2.5.html)). + +Feb 16, 2014: Released version 2.4.0 ([Notes](release-2.4.html)). Mar 22, 2013: Released version 2.3.1 (a bugfix release). diff --git a/docs/release-2.5.txt b/docs/release-2.5.txt index 501fd1f..250332e 100644 --- a/docs/release-2.5.txt +++ b/docs/release-2.5.txt @@ -16,10 +16,7 @@ Backwards-incompatible Changes ------------------------------ * Python-Markdown no longer supports Python version 2.6. You must be using Python - versions 2.7, 3.2, 3.3, or 3.4. While Python-Markdown is no longer tested against - Python 2.6, you may be able to get it working if you install a copy of [importlib] - which has been backported for Python 2.6. However, the developers of Python-Markdown - offer no guarentees in that situation. + versions 2.7, 3.2, 3.3, or 3.4. [importlib]: https://pypi.python.org/pypi/importlib diff --git a/markdown/__version__.py b/markdown/__version__.py index cabeff3..d69eed1 100644 --- a/markdown/__version__.py +++ b/markdown/__version__.py @@ -5,7 +5,7 @@ # (major, minor, micro, alpha/beta/rc/final, #) # (1, 1, 2, 'alpha', 0) => "1.1.2.dev" # (1, 2, 0, 'beta', 2) => "1.2b2" -version_info = (2, 5, 0, 'final', 0) +version_info = (2, 5, 1, 'final', 0) def _get_version(): " Returns a PEP 386-compliant version number from version_info. " -- cgit v1.2.1