Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
Pyxform Changelog

v4.1.0, 2025-10-20
* Restore pre-py3.13 xml attribute escaping behaviour for \r\n\t by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/772
* Update dependencies by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/774
* Accept a list of references in the trigger column by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/776
* Process triggers for all question types by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/780
* Handle None from fullmatch reference regex by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/782
* Improve relative references in repeats by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/777
* Support Entities from repeats by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/778

v4.0.0, 2025-06-09
* Case insensitivity of sheet, column, and setting names; plus more performance improvements by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/746
* Ensure labels are visible for randomized selects with translations by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/764
* Add client_editable setting by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/766
* Support for / test with python 3.13 by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/768

v3.1.0, 2025-06-10
* Add client_editable setting by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/766

v3.0.1, 2025-02-25
* More performance improvements by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/743
* Handle obj.get(k, default) call pattern for backward compatibility by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/755
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyxform"
version = "4.0.0"
version = "4.1.0"
authors = [
{name = "github.com/xlsform", email = "support@getodk.org"},
]
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__ = "4.0.0"
__version__ = "4.1.0"

from pyxform.builder import (
SurveyElementBuilder,
Expand Down