From d8a315a6397f3f66addb6352e8273f2d4b3ec837 Mon Sep 17 00:00:00 2001 From: Yaw Anokwa Date: Mon, 17 Feb 2020 11:39:32 -0800 Subject: [PATCH] Prepare for release v1.1.0 --- CHANGES.txt | 9 +++++++++ README.rst | 4 ++-- pyxform/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index d2520445f..044fecfcd 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,14 @@ Pyxform Changelog +# v1.1.0, 2020-02-17 + +* #429 Adding a hash to properly route to the choicenames url + * Zach Weed @zachhweed +* #430 Add odk:xforms-version="1.0.0" attribute to + * Martijn van de Rijdt @MartijnR (Enketo) +* #431 Put setvalue action for repeats in the body + * Hélène Martin @lognaturel (Nafundi) + # v1.0.1, 2020-02-06 * #423 Update to ODK Validate v1.14.0 diff --git a/README.rst b/README.rst index 3d24066f3..8c0778f32 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ =============== -pyxform v1.0.1 +pyxform v1.1.0 =============== |circleci| |appveyor| |codecov| |black| @@ -118,7 +118,7 @@ Releasing pyxform pyxform_validator_update odk update ODK-Validate-vx.x.x.jar -2. Run all tests through Validate by setting the default for ``run_odk_validate`` to ``True`` in ``pyxform_test_case``. +2. Run all tests through Validate by setting the default for ``run_odk_validate`` to ``kwargs.get("run_odk_validate", True)`` in ``pyxform_test_case``. 3. Draft a new GitHub release with the list of merged PRs. Follow the title and description pattern of the previous release. 4. Checkout a release branch from latest upstream master. 5. Update ``CHANGES.txt`` with the text of the draft release. diff --git a/pyxform/__init__.py b/pyxform/__init__.py index 6c25db348..4512ec87c 100644 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -4,7 +4,7 @@ Collect easy. """ -__version__ = "1.0.1" +__version__ = "1.1.0" from pyxform.builder import ( SurveyElementBuilder, diff --git a/setup.py b/setup.py index a35eb47ef..303d35ee8 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name="pyxform", - version="1.0.1", + version="1.1.0", author="github.com/xlsform", author_email="info@xlsform.org", packages=find_packages(),