@@ -1,3 +1,8 @@ | |||||
v0.4.2 (released July 30, 2015): | |||||
- Fixed setup script not including header files in releases. | |||||
- Fixed Windows binary uploads. | |||||
v0.4.1 (released July 30, 2015): | v0.4.1 (released July 30, 2015): | ||||
- The process for building Windows binaries has been fixed, and these should be | - The process for building Windows binaries has been fixed, and these should be | ||||
@@ -1,2 +1,3 @@ | |||||
include LICENSE CHANGELOG | include LICENSE CHANGELOG | ||||
recursive-include mwparserfromhell *.h | |||||
recursive-include tests *.py *.mwtest | recursive-include tests *.py *.mwtest |
@@ -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.4.1-b{build} | |||||
version: 0.4.2-b{build} | |||||
branches: | branches: | ||||
only: | only: | ||||
@@ -14,6 +14,7 @@ environment: | |||||
WRAPPER: "cmd /E:ON /V:ON /C .\\scripts\\win_wrapper.cmd" | WRAPPER: "cmd /E:ON /V:ON /C .\\scripts\\win_wrapper.cmd" | ||||
PIP: "%WRAPPER% %PYTHON%\\Scripts\\pip.exe" | PIP: "%WRAPPER% %PYTHON%\\Scripts\\pip.exe" | ||||
SETUPPY: "%WRAPPER% %PYTHON%\\python setup.py --with-extension" | SETUPPY: "%WRAPPER% %PYTHON%\\python setup.py --with-extension" | ||||
PYMOD: "%WRAPPER% %PYTHON%\\python -m" | |||||
PYPI_USERNAME: "earwigbot" | PYPI_USERNAME: "earwigbot" | ||||
PYPI_PASSWORD: | PYPI_PASSWORD: | ||||
secure: gOIcvPxSC2ujuhwOzwj3v8xjq3CCYd8keFWVnguLM+gcL0e02qshDHy7gwZZwj0+ | secure: gOIcvPxSC2ujuhwOzwj3v8xjq3CCYd8keFWVnguLM+gcL0e02qshDHy7gwZZwj0+ | ||||
@@ -56,7 +57,7 @@ after_test: | |||||
- "%SETUPPY% bdist_wheel" | - "%SETUPPY% bdist_wheel" | ||||
on_success: | on_success: | ||||
- "twine upload dist\\* -u %PYPI_USERNAME% -p %PYPI_PASSWORD%" | |||||
- "%PYMOD% twine upload dist\\* -u %PYPI_USERNAME% -p %PYPI_PASSWORD%" | |||||
artifacts: | artifacts: | ||||
- path: dist\* | - path: dist\* | ||||
@@ -1,6 +1,15 @@ | |||||
Changelog | Changelog | ||||
========= | ========= | ||||
v0.4.2 | |||||
------ | |||||
`Released July 30, 2015 <https://github.com/earwig/mwparserfromhell/tree/v0.4.2>`_ | |||||
(`changes <https://github.com/earwig/mwparserfromhell/compare/v0.4.1...v0.4.2>`__): | |||||
- Fixed setup script not including header files in releases. | |||||
- Fixed Windows binary uploads. | |||||
v0.4.1 | v0.4.1 | ||||
------ | ------ | ||||
@@ -29,7 +29,7 @@ outrageously powerful parser for `MediaWiki <http://mediawiki.org>`_ wikicode. | |||||
__author__ = "Ben Kurtovic" | __author__ = "Ben Kurtovic" | ||||
__copyright__ = "Copyright (C) 2012, 2013, 2014, 2015 Ben Kurtovic" | __copyright__ = "Copyright (C) 2012, 2013, 2014, 2015 Ben Kurtovic" | ||||
__license__ = "MIT License" | __license__ = "MIT License" | ||||
__version__ = "0.4.1" | |||||
__version__ = "0.4.2" | |||||
__email__ = "ben.kurtovic@gmail.com" | __email__ = "ben.kurtovic@gmail.com" | ||||
from . import (compat, definitions, nodes, parser, smart_list, string_mixin, | from . import (compat, definitions, nodes, parser, smart_list, string_mixin, | ||||