From 9a905fe3a541abd25ecc84d7aa9be5fb51b9282f Mon Sep 17 00:00:00 2001 From: Dickson Ukang'a Date: Wed, 4 Jul 2018 15:18:12 +0300 Subject: [PATCH] Release version 0.11.3 --- CHANGES.txt | 22 ++++++++++++++++++++-- README.rst | 6 +++--- pyxform/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 25 insertions(+), 7 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index ba9b910b3..9dca48f75 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,7 +1,25 @@ Pyxform Changelog -v0.11.3, (Unreleased) - -- no changes yet +v0.11.3, 2018 07 04 + -- Set mediatype for file to application/* + Issue #194, https://github.com/XLSForm/pyxform/issues/194 + [lognaturel] + + -- Add support for randomizing select + Issue #183, https://github.com/XLSForm/pyxform/issues/183 + [lognaturel] + + -- Add max-pixels parameter for images + Issue #137, https://github.com/XLSForm/pyxform/issues/137 + [lognaturel] + + -- Add support for guidance hints + Issue #142, https://github.com/XLSForm/pyxform/issues/142 + [lognaturel] + + -- Add python versions support policy to readme + Issue #201, https://github.com/XLSForm/pyxform/pull/201 + [KeynesYouDigIt] v0.11.2, 2018 04 20 -- Fix startupinfo flags not set properly due to misnamed variable diff --git a/README.rst b/README.rst index 6ebe837b0..5cf4c728e 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,6 @@ -============= -pyxform v0.11 -============= +=============== +pyxform v0.11.3 +=============== |travis| |appveyor| diff --git a/pyxform/__init__.py b/pyxform/__init__.py index 4717022dd..a667abdfa 100755 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -3,7 +3,7 @@ Collect easy. """ -__version__ = '0.11.2' +__version__ = '0.11.3' from pyxform.builder import ( SurveyElementBuilder, diff --git a/setup.py b/setup.py index c1f907e46..d741ecca5 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='pyxform', - version='0.11.2', + version='0.11.3', author='github.com/xlsform', author_email='info@xlsform.org', packages=find_packages(),