Browse Source

Version bump

tags/v0.6.1
Ben Kurtovic 3 years ago
parent
commit
cccbd3ef11
5 changed files with 16 additions and 3 deletions
  1. +5
    -1
      CHANGELOG
  2. +1
    -1
      appveyor.yml
  3. +8
    -0
      docs/changelog.rst
  4. +1
    -1
      mwparserfromhell/__init__.py
  5. +1
    -0
      scripts/release.sh

+ 5
- 1
CHANGELOG View File

@@ -1,3 +1,7 @@
v0.7 (unreleased):

- ...

v0.6 (released December 21, 2020): v0.6 (released December 21, 2020):


Thanks to everyone for their patience with this release! Thanks to everyone for their patience with this release!
@@ -7,7 +11,7 @@ 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)
- Added 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) - Fixed parsing of section headings inside templates. (#233)


+ 1
- 1
appveyor.yml View File

@@ -1,6 +1,6 @@
# This config file is used by appveyor.com to build Windows release binaries # This config file is used by appveyor.com to build Windows release binaries


version: 0.6-b{build}
version: 0.7.dev0-b{build}


branches: branches:
only: only:


+ 8
- 0
docs/changelog.rst View File

@@ -1,6 +1,14 @@
Changelog Changelog
========= =========


v0.7
----

Unreleased
(`changes <https://github.com/earwig/mwparserfromhell/compare/v0.6...develop>`__):

- ...

v0.6 v0.6
---- ----




+ 1
- 1
mwparserfromhell/__init__.py View File

@@ -27,7 +27,7 @@ outrageously powerful parser for `MediaWiki <https://www.mediawiki.org>`_ wikico
__author__ = "Ben Kurtovic" __author__ = "Ben Kurtovic"
__copyright__ = "Copyright (C) 2012-2020 Ben Kurtovic" __copyright__ = "Copyright (C) 2012-2020 Ben Kurtovic"
__license__ = "MIT License" __license__ = "MIT License"
__version__ = "0.6"
__version__ = "0.7.dev0"
__email__ = "ben.kurtovic@gmail.com" __email__ = "ben.kurtovic@gmail.com"


from . import (definitions, nodes, parser, smart_list, string_mixin, from . import (definitions, nodes, parser, smart_list, string_mixin,


+ 1
- 0
scripts/release.sh View File

@@ -101,6 +101,7 @@ test_release() {
source bin/activate source bin/activate
echo " done." echo " done."
echo -n "Installing mwparserfromhell with pip..." echo -n "Installing mwparserfromhell with pip..."
pip -q install --upgrade pip
pip -q install mwparserfromhell pip -q install mwparserfromhell
echo " done." echo " done."
echo -n "Checking version..." echo -n "Checking version..."


Loading…
Cancel
Save