diff --git a/CHANGES.txt b/CHANGES.txt index 62f1645e..9cb4bf50 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,10 @@ Pyxform Changelog +v3.0.0, 2024-12-09 +* Include all choice lists in output by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/736 +* Improve complex forms performance (includes changes to JSON representation) by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/740, https://github.com/XLSForm/pyxform/pull/742 +* Always produce entity forms with the offline entities spec version by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/732 + 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 diff --git a/pyproject.toml b/pyproject.toml index f0b7476d..c5851c78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyxform" -version = "2.2.0" +version = "3.0.0" authors = [ {name = "github.com/xlsform", email = "support@getodk.org"}, ] diff --git a/pyxform/__init__.py b/pyxform/__init__.py index 81f41de3..4fef0685 100644 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -4,7 +4,7 @@ Collect easy. """ -__version__ = "2.2.0" +__version__ = "3.0.0" from pyxform.builder import ( SurveyElementBuilder,