From e6ffda61713717a9dd8ef0671d1723c8c2cfdfc9 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Thu, 30 Jul 2015 02:56:35 -0400 Subject: [PATCH] Fix some issues during 0.4.1 release. --- CHANGELOG | 5 +++++ MANIFEST.in | 1 + appveyor.yml | 3 ++- docs/changelog.rst | 9 +++++++++ mwparserfromhell/__init__.py | 2 +- 5 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 921bc4f..0c28a0c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +v0.4.2 (unreleased): + +- Fixed setup script not including header files in releases. +- Fixed Windows binary uploads. + v0.4.1 (released July 30, 2015): - The process for building Windows binaries has been fixed, and these should be diff --git a/MANIFEST.in b/MANIFEST.in index 27e8a54..1488a37 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include LICENSE CHANGELOG +recursive-include mwparserfromhell *.h recursive-include tests *.py *.mwtest diff --git a/appveyor.yml b/appveyor.yml index 4ed112a..f44b8c5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,6 +14,7 @@ environment: WRAPPER: "cmd /E:ON /V:ON /C .\\scripts\\win_wrapper.cmd" PIP: "%WRAPPER% %PYTHON%\\Scripts\\pip.exe" SETUPPY: "%WRAPPER% %PYTHON%\\python setup.py --with-extension" + PYMOD: "%WRAPPER% %PYTHON%\\python -m" PYPI_USERNAME: "earwigbot" PYPI_PASSWORD: secure: gOIcvPxSC2ujuhwOzwj3v8xjq3CCYd8keFWVnguLM+gcL0e02qshDHy7gwZZwj0+ @@ -56,7 +57,7 @@ after_test: - "%SETUPPY% bdist_wheel" on_success: - - "twine upload dist\\* -u %PYPI_USERNAME% -p %PYPI_PASSWORD%" + - "%PYMOD% twine upload dist\\* -u %PYPI_USERNAME% -p %PYPI_PASSWORD%" artifacts: - path: dist\* diff --git a/docs/changelog.rst b/docs/changelog.rst index b108b9a..7e31c50 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,15 @@ Changelog ========= +v0.4.2 +------ + +Unreleased +(`changes `__): + +- Fixed setup script not including header files in releases. +- Fixed Windows binary uploads. + v0.4.1 ------ diff --git a/mwparserfromhell/__init__.py b/mwparserfromhell/__init__.py index cb95c10..a56b9ed 100644 --- a/mwparserfromhell/__init__.py +++ b/mwparserfromhell/__init__.py @@ -29,7 +29,7 @@ outrageously powerful parser for `MediaWiki `_ wikicode. __author__ = "Ben Kurtovic" __copyright__ = "Copyright (C) 2012, 2013, 2014, 2015 Ben Kurtovic" __license__ = "MIT License" -__version__ = "0.4.1" +__version__ = "0.4.2.dev0" __email__ = "ben.kurtovic@gmail.com" from . import (compat, definitions, nodes, parser, smart_list, string_mixin,