From 895730681a65cdb11ab6cc5971d61ee37d48d2cc Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Mon, 21 Dec 2020 04:23:36 -0500 Subject: [PATCH] Update changelog and update AppVeyor config --- CHANGELOG | 3 ++- README.rst | 2 +- appveyor.yml | 2 ++ docs/changelog.rst | 4 +++- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 6d0cf86..e599665 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,9 +7,10 @@ Thanks to everyone for their patience with this release! - Added binary wheels for Linux and macOS. - Updated Wikicode.matches() to recognize underscores as being equivalent 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) - Fixed a rare parsing bug involving deeply nested style tags. (#224) +- Fixed parsing of section headings inside templates. (#233) - Updated HTML tag definitions. - Internal refactoring and cleanup. diff --git a/README.rst b/README.rst index 45db387..8641103 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ 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 :target: https://travis-ci.org/earwig/mwparserfromhell diff --git a/appveyor.yml b/appveyor.yml index a39024f..4307169 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,6 +9,8 @@ branches: skip_tags: true +image: Visual Studio 2019 + environment: global: # See: http://stackoverflow.com/a/13751649/163740 diff --git a/docs/changelog.rst b/docs/changelog.rst index 59bedc8..afade5f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -15,11 +15,13 @@ Thanks to everyone for their patience with this release! - Updated :meth:`.Wikicode.matches` to recognize underscores as being equivalent to spaces. (`#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. (`#252 `_) - Fixed a rare parsing bug involving deeply nested style tags. (`#224 `_) +- Fixed parsing of section headings inside templates. + (`#233 `_) - Updated HTML tag definitions. - Internal refactoring and cleanup.