diff --git a/CHANGES.txt b/CHANGES.txt index 9cb4bf50..cd101628 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,9 @@ Pyxform Changelog +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 + 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 diff --git a/pyproject.toml b/pyproject.toml index c5851c78..dd2feda6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyxform" -version = "3.0.0" +version = "3.0.1" authors = [ {name = "github.com/xlsform", email = "support@getodk.org"}, ] diff --git a/pyxform/__init__.py b/pyxform/__init__.py index 4fef0685..e2c0920e 100644 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -4,7 +4,7 @@ Collect easy. """ -__version__ = "3.0.0" +__version__ = "3.0.1" from pyxform.builder import ( SurveyElementBuilder,