@@ -7,9 +7,10 @@ Thanks to everyone for their patience with this release! | |||||
- Added binary wheels for Linux and macOS. | - Added binary wheels for Linux and macOS. | ||||
- Updated Wikicode.matches() to recognize underscores as being equivalent | - Updated Wikicode.matches() to recognize underscores as being equivalent | ||||
to spaces. (#216) | to spaces. (#216) | ||||
- Add a 'default' parameter to Template.get, and implement dict-style item | |||||
- Added a 'default' parameter to Template.get, and implement dict-style item | |||||
access for template parameters. (#252) | access for template parameters. (#252) | ||||
- Fixed a rare parsing bug involving deeply nested style tags. (#224) | - Fixed a rare parsing bug involving deeply nested style tags. (#224) | ||||
- Fixed parsing of section headings inside templates. (#233) | |||||
- Updated HTML tag definitions. | - Updated HTML tag definitions. | ||||
- Internal refactoring and cleanup. | - Internal refactoring and cleanup. | ||||
@@ -1,7 +1,7 @@ | |||||
mwparserfromhell | mwparserfromhell | ||||
================ | ================ | ||||
.. image:: https://img.shields.io/travis/earwig/mwparserfromhell/develop.svg | |||||
.. image:: https://api.travis-ci.com/earwig/mwparserfromhell.svg?branch=develop | |||||
:alt: Build Status | :alt: Build Status | ||||
:target: https://travis-ci.org/earwig/mwparserfromhell | :target: https://travis-ci.org/earwig/mwparserfromhell | ||||
@@ -9,6 +9,8 @@ branches: | |||||
skip_tags: true | skip_tags: true | ||||
image: Visual Studio 2019 | |||||
environment: | environment: | ||||
global: | global: | ||||
# See: http://stackoverflow.com/a/13751649/163740 | # See: http://stackoverflow.com/a/13751649/163740 | ||||
@@ -15,11 +15,13 @@ Thanks to everyone for their patience with this release! | |||||
- Updated :meth:`.Wikicode.matches` to recognize underscores as being | - Updated :meth:`.Wikicode.matches` to recognize underscores as being | ||||
equivalent to spaces. | equivalent to spaces. | ||||
(`#216 <https://github.com/earwig/mwparserfromhell/issues/216>`_) | (`#216 <https://github.com/earwig/mwparserfromhell/issues/216>`_) | ||||
- Add a `default` parameter to :meth:`.Template.get`, and implement dict-style | |||||
- Added a `default` parameter to :meth:`.Template.get`, and implement dict-style | |||||
item access for template parameters. | item access for template parameters. | ||||
(`#252 <https://github.com/earwig/mwparserfromhell/issues/252>`_) | (`#252 <https://github.com/earwig/mwparserfromhell/issues/252>`_) | ||||
- Fixed a rare parsing bug involving deeply nested style tags. | - Fixed a rare parsing bug involving deeply nested style tags. | ||||
(`#224 <https://github.com/earwig/mwparserfromhell/issues/224>`_) | (`#224 <https://github.com/earwig/mwparserfromhell/issues/224>`_) | ||||
- Fixed parsing of section headings inside templates. | |||||
(`#233 <https://github.com/earwig/mwparserfromhell/issues/233>`_) | |||||
- Updated HTML tag definitions. | - Updated HTML tag definitions. | ||||
- Internal refactoring and cleanup. | - Internal refactoring and cleanup. | ||||