Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare v2.2.0 #735

Merged
merged 1 commit into from
Oct 30, 2024
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
6 changes: 5 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Pyxform Changelog

v2.1.1, 2024.10-09
v2.2.0, 2024-10-29
* Add `background-geopoint` question type which exposes `xforms-value-changed` event with `odk:setgeopoint` action by @RuthShryock in https://github.com/XLSForm/pyxform/pull/726
* 724: raise an error if a `${}` pyxform reference is malformed by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/734

v2.1.1, 2024-10-09
* Update Validate to fix support for geojson by @lognaturel in https://github.com/XLSForm/pyxform/pull/727

v2.1.0, 2024-09-05
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 = "2.1.1"
version = "2.2.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__ = "2.1.1"
__version__ = "2.2.0"

from pyxform.builder import (
SurveyElementBuilder,
Expand Down