From 642ad078d81205fb88ff7117372e1ad849834f31 Mon Sep 17 00:00:00 2001 From: Ukang'a Dickson Date: Mon, 25 Apr 2022 08:26:21 +0300 Subject: [PATCH] Prepare for v1.10.0 release (#608) --- CHANGES.txt | 9 +++++++-- README.rst | 4 ++-- pyxform/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 5c1ee3c6..d8731352 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,10 @@ Pyxform Changelog +# v1.10.0, 2022-04-25 + +* https://github.com/XLSForm/pyxform/pull/578 Add a lexer to identify dynamic defaults in expressions vs. strings +* https://github.com/XLSForm/pyxform/pull/607 Fix survey json->xml round trip not working for some question types + # v1.9.0, 2022-03-16 * https://github.com/XLSForm/pyxform/pull/577 Add value and label params to select_.._from_file @@ -80,7 +85,7 @@ Pyxform Changelog * Agus Hilman @gushil (OpenClinica) * #507 Fixed KeyError that occurs with some dynamic default expressions * Agus Hilman @gushil (OpenClinica) -* #484 Use absolute path for first argument in indexed-repeat() output +* #484 Use absolute path for first argument in indexed-repeat() output * Agus Hilman @gushil (OpenClinica) # v1.3.3, 2020-12-17 @@ -121,7 +126,7 @@ Pyxform Changelog # v1.2.0, 2020-09-10 * #436 support another java version string for 9-internal - * @kenhorn + * @kenhorn * #438 Add "trigger" column to use value changes as triggers for calculations * Agus Hilman @gushil (OpenClinica) and Hélène Martin @lognaturel (Nafundi) * #70 Add non-string calculation types diff --git a/README.rst b/README.rst index 53b48ce8..17e811d4 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ =============== -pyxform v1.9.0 +pyxform v1.10.0 =============== |python| |black| @@ -120,7 +120,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 ``kwargs.get("run_odk_validate", True)`` in ``pyxform/tests_v1/pyxform_test_case.py``. +2. Run all tests through Validate by setting the default for ``run_odk_validate`` to ``kwargs.get("run_odk_validate", True)`` in ``tests/pyxform_test_case.py``. 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 f9196ede..01389371 100644 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -4,7 +4,7 @@ Collect easy. """ -__version__ = "1.9.0" +__version__ = "1.10.0" from pyxform.builder import ( SurveyElementBuilder, diff --git a/setup.py b/setup.py index 756399b6..c0c6c9db 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pyxform", - version="1.9.0", + version="1.10.0", author="github.com/xlsform", author_email="info@xlsform.org", packages=find_packages(exclude=["tests", "tests.*"]),