diff --git a/CHANGES.txt b/CHANGES.txt index b4fef6923..ba9b910b3 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,14 +1,19 @@ Pyxform Changelog -v0.11.2, (Unreleased) +v0.11.3, (Unreleased) -- no changes yet -v0.11.2, 2018 08 09 +v0.11.2, 2018 04 20 + -- Fix startupinfo flags not set properly due to misnamed variable + Issue #195, https://github.com/XLSForm/pyxform/pull/195 + [yanokwa] + +v0.11.1, 2018 04 09 -- Add iana_subtags.txt to package, Issue #191, https://github.com/XLSForm/pyxform/issues/191 [yanokwa] -v0.11.0, 2018 08 05 +v0.11.0, 2018 04 05 -- Code cleanup, remove no-op XML formatting code Issue #148, https://github.com/XLSForm/pyxform/pull/148 [alxndrsn] diff --git a/README.rst b/README.rst index 4684dee41..1750f5604 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,6 @@ -=============== -pyxform v0.10.X -=============== +============= +pyxform v0.11 +============= |travis| |appveyor| diff --git a/pyxform/__init__.py b/pyxform/__init__.py index 009b741f8..4717022dd 100755 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -3,7 +3,7 @@ Collect easy. """ -__version__ = '0.11.1' +__version__ = '0.11.2' from pyxform.builder import ( SurveyElementBuilder, diff --git a/setup.py b/setup.py index 86f8bea51..c1f907e46 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='pyxform', - version='0.11.1', + version='0.11.2', author='github.com/xlsform', author_email='info@xlsform.org', packages=find_packages(),