diff options
author | Waylan Limberg <waylan@gmail.com> | 2013-02-08 08:05:02 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2013-02-08 08:05:02 -0500 |
commit | 62547c53a1f40235c83542992573cc435aa82f36 (patch) | |
tree | a12eb5f38228838527338a88b7ce48c5521d6b50 | |
parent | a0df080088bef0fac603b83752a36c5c403016e6 (diff) | |
download | markdown-62547c53a1f40235c83542992573cc435aa82f36.tar.gz markdown-62547c53a1f40235c83542992573cc435aa82f36.tar.bz2 markdown-62547c53a1f40235c83542992573cc435aa82f36.zip |
Added skeleton draft of Release Notes for 2.3
-rw-r--r-- | docs/change_log.txt | 6 | ||||
-rw-r--r-- | docs/release-2.2.1.txt | 4 | ||||
-rw-r--r-- | docs/release-2.3.txt | 31 |
3 files changed, 37 insertions, 4 deletions
diff --git a/docs/change_log.txt b/docs/change_log.txt index 1a078bf..ef559e0 100644 --- a/docs/change_log.txt +++ b/docs/change_log.txt @@ -1,12 +1,14 @@ title: Change Log prev_title: Test Suite prev_url: test_suite.html -next_title: Release Notes for v2.2.1 -next_url: release-2.2.1.html +next_title: Release Notes for v2.3 +next_url: release-2.3.html Python-Markdown Changelog ========================= +__________: Released version 2.3.0 ([Notes](release-2.3.html)) + Nov 4, 2012: Released version 2.2.1 ([Notes](release-2.2.1.html)). Jul 5, 2012: Released version 2.2.0 ([Notes](release-2.2.0.html)). diff --git a/docs/release-2.2.1.txt b/docs/release-2.2.1.txt index cdec0ad..fe27c71 100644 --- a/docs/release-2.2.1.txt +++ b/docs/release-2.2.1.txt @@ -1,6 +1,6 @@ title: Release Notes for v2.2.1 -prev_title: Change Log -prev_url: change_log.html +prev_title: Release Notes for v2.3 +prev_url: release-2.3.html next_title: Release Notes for v2.2.0 next_url: release-2.2.0.html diff --git a/docs/release-2.3.txt b/docs/release-2.3.txt new file mode 100644 index 0000000..3255f74 --- /dev/null +++ b/docs/release-2.3.txt @@ -0,0 +1,31 @@ +title: Release Notes for v2.3 +prev_title: Change Log +prev_url: change_log.html +next_title: Release Notes for v2.2.1 +next_url: release-2.2.1.html + +Python-Markdown 2.3 Release Notes +================================= + +We are pleased to release Python-Markdown 2.3 which ... + +Python-Markdown supports Python versions 2.6, 2.7, 3.1, 3.3, and 3.3. + +Backwards-incompatible Changes +------------------------------ + +* Support has been dropped for Python 2.5. No guarantees are made that the +library will work in any version of Python lower than 2.6. + +* "safe_mode" has been further restricted. Markdown formated links must be +of a known whitelisted scheme when in "safe_mode" or the url is discarded. +The whitelesited schemes are: 'http', 'https', 'ftp', 'ftps', 'mailto', +'news'. Schemeless urls are also permitted, but are checked in other ways - +as they have been for some time. + +What's New in Python-Markdown 2.3 +--------------------------------- + +Various bug fixes have been made. See the +[commit log](https://github.com/waylan/Python-Markdown/commits/master) +for a complete history of the changes. |