Explorar el Código

Version bump

tags/v0.6.1
Ben Kurtovic hace 3 años
padre
commit
cccbd3ef11
Se han modificado 5 ficheros con 16 adiciones y 3 borrados
  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 Ver fichero

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

- ...

v0.6 (released December 21, 2020):

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.
- Updated Wikicode.matches() to recognize underscores as being equivalent
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)
- Fixed a rare parsing bug involving deeply nested style tags. (#224)
- Fixed parsing of section headings inside templates. (#233)


+ 1
- 1
appveyor.yml Ver fichero

@@ -1,6 +1,6 @@
# 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:
only:


+ 8
- 0
docs/changelog.rst Ver fichero

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

v0.7
----

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

- ...

v0.6
----



+ 1
- 1
mwparserfromhell/__init__.py Ver fichero

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

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


+ 1
- 0
scripts/release.sh Ver fichero

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


Cargando…
Cancelar
Guardar