Skip to content

Commit 5b0ac3d

Browse files
authored
Prepare v4.1.0 (#783)
1 parent cf12efd commit 5b0ac3d

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGES.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
Pyxform Changelog
22

3+
v4.1.0, 2025-10-20
4+
* Restore pre-py3.13 xml attribute escaping behaviour for \r\n\t by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/772
5+
* Update dependencies by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/774
6+
* Accept a list of references in the trigger column by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/776
7+
* Process triggers for all question types by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/780
8+
* Handle None from fullmatch reference regex by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/782
9+
* Improve relative references in repeats by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/777
10+
* Support Entities from repeats by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/778
11+
312
v4.0.0, 2025-06-09
413
* Case insensitivity of sheet, column, and setting names; plus more performance improvements by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/746
514
* Ensure labels are visible for randomized selects with translations by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/764
615
* Add client_editable setting by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/766
716
* Support for / test with python 3.13 by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/768
817

18+
v3.1.0, 2025-06-10
19+
* Add client_editable setting by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/766
20+
921
v3.0.1, 2025-02-25
1022
* More performance improvements by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/743
1123
* Handle obj.get(k, default) call pattern for backward compatibility by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/755

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyxform"
3-
version = "4.0.0"
3+
version = "4.1.0"
44
authors = [
55
{name = "github.com/xlsform", email = "support@getodk.org"},
66
]

pyxform/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Collect easy.
55
"""
66

7-
__version__ = "4.0.0"
7+
__version__ = "4.1.0"
88

99
from pyxform.builder import (
1010
SurveyElementBuilder,

0 commit comments

Comments
 (0)