From fff93b77270209e01ff0d482d7e8c0f1824c556d Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Mon, 19 Aug 2013 23:04:44 -0400 Subject: [PATCH] Add changelog entries for ExternalLinks. --- CHANGELOG | 8 +++++--- docs/changelog.rst | 9 +++++---- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 8922738..84edc60 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,8 +1,10 @@ v0.3 (unreleased): -- Added complete support for HTML Tags, along with appropriate unit tests. This - includes forms like foo, , and wiki-markup tags - like bold ('''), italics (''), and lists (*, #, ; and :). +- Added complete support for HTML Tags, including forms like foo, + , and wiki-markup tags like bold ('''), italics (''), and + lists (*, #, ; and :). +- Added support for ExternalLinks (http://example.com/ and + [http://example.com/ Example]). - Wikicode's filter methods are now passed 'recursive=True' by default instead of False. This is a breaking change if you rely on any filter() methods being non-recursive by default. diff --git a/docs/changelog.rst b/docs/changelog.rst index 86dfd78..810f594 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,10 +7,11 @@ v0.3 Unreleased (`changes `__): -- Added complete support for HTML :py:class:`Tags <.Tag>`, along with - appropriate unit tests. This includes forms like ``foo``, - ````, and wiki-markup tags like bold (``'''``), italics - (``''``), and lists (``*``, ``#``, ``;`` and ``:``). +- Added complete support for HTML :py:class:`Tags <.Tag>`, including forms like + ``foo``, ````, and wiki-markup tags like bold + (``'''``), italics (``''``), and lists (``*``, ``#``, ``;`` and ``:``). +- Added support for :py:class:`.ExternalLink`\ s (``http://example.com/`` and + ``[http://example.com/ Example]``). - :py:class:`Wikicode's <.Wikicode>` :py:meth:`.filter` methods are now passed *recursive=True* by default instead of *False*. **This is a breaking change if you rely on any filter() methods being non-recursive by default.**