From 4a87c0fb120dc0b5d527a64c30c7e476181e9503 Mon Sep 17 00:00:00 2001 From: Ukang'a Dickson Date: Sun, 9 Dec 2018 21:25:06 +0300 Subject: [PATCH] Release version 0.12.0 (#246) --- CHANGES.txt | 33 +++++++++++++++++++++++++++++++++ README.rst | 6 +++--- pyxform/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 38 insertions(+), 5 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 06f730403..ad06d880e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,38 @@ Pyxform Changelog +v0.12.0, 2018 + -- Upgrade to ODK Validate v1.10.3 + Issue #225, https://github.com/XLSForm/pyxform/issue/225 + [ukanga] + + -- Process only standard XLSForm sheets + Issue #229, https://github.com/XLSForm/pyxform/issue/229 + [ukanga] + + -- Add relative referencing + Issue #4, https://github.com/XLSForm/pyxform/issue/4 + [ukanga] + + -- Fix randomize with dynamic seed value throws error + Issue #238, https://github.com/XLSForm/pyxform/issue/238 + [ggalmazor] + + -- Update choice filter JSON representation + Issue #234, https://github.com/XLSForm/pyxform/issue/234 + [lincmba] + + -- Make sure that the json scheme is a valid json + Issue #223, https://github.com/XLSForm/pyxform/issue/223 + [HaidarZ] + + -- Skip over non-strings when replacing smart quotes + Issue #236, https://github.com/XLSForm/pyxform/issue/236 + [jnm] + + -- Updated outdated language reference xlsform.org url + Issue #221, https://github.com/XLSForm/pyxform/issue/221 + [tinok] + v0.11.5, 2018 07 22 -- Add support for SMS prefix, delimiter and tag, Issue #207, https://github.com/XLSForm/pyxform/issues/207 diff --git a/README.rst b/README.rst index cfb00d389..dc7760582 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,6 @@ -=============== -pyxform v0.11.5 -=============== +============= +pyxform v0.12 +============= |travis| |appveyor| diff --git a/pyxform/__init__.py b/pyxform/__init__.py index ad9c7b1bc..d6bf164e3 100644 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -3,7 +3,7 @@ Collect easy. """ -__version__ = '0.11.5' +__version__ = '0.12.0' from pyxform.builder import ( SurveyElementBuilder, diff --git a/setup.py b/setup.py index c761ca29f..f8bbbaca2 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='pyxform', - version='0.11.5', + version='0.12.0', author='github.com/xlsform', author_email='info@xlsform.org', packages=find_packages(),