diff --git a/CHANGES.txt b/CHANGES.txt index 00e22207..b94cffc6 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,8 @@ Pyxform Changelog +v1.12.2, 2023-09-15 +* Alias list_name to dataset in entities sheet by @lognaturel in https://github.com/XLSForm/pyxform/pull/654 + v1.12.1, 2023-05-16 * Pass through itemset ref case by @lognaturel in https://github.com/XLSForm/pyxform/pull/644 diff --git a/README.rst b/README.rst index 68aa100b..c6b4ab60 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ =============== -pyxform v1.12.1 +pyxform v1.12.2 =============== |python| |black| diff --git a/pyxform/__init__.py b/pyxform/__init__.py index ba05c54b..8a0b5cc8 100644 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -4,7 +4,7 @@ Collect easy. """ -__version__ = "1.12.1" +__version__ = "1.12.2" from pyxform.builder import ( SurveyElementBuilder, diff --git a/setup.py b/setup.py index 6d37f9cb..22a39b2e 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pyxform", - version="1.12.1", + version="1.12.2", author="github.com/xlsform", author_email="info@xlsform.org", packages=find_packages(exclude=["tests", "tests.*"]),