Skip to content

Commit

Permalink
Prepare for v1.10.0 release (#608)
Browse files Browse the repository at this point in the history
  • Loading branch information
ukanga authored Apr 25, 2022
1 parent f4ce2ec commit 642ad07
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
9 changes: 7 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
===============
pyxform v1.9.0
pyxform v1.10.0
===============

|python| |black|
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyxform/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Collect easy.
"""

__version__ = "1.9.0"
__version__ = "1.10.0"

from pyxform.builder import (
SurveyElementBuilder,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="pyxform",
version="1.9.0",
version="1.10.0",
author="github.com/xlsform",
author_email="[email protected]",
packages=find_packages(exclude=["tests", "tests.*"]),
Expand Down

0 comments on commit 642ad07

Please sign in to comment.