diff --git a/CHANGES.txt b/CHANGES.txt index b899c7f8..355dec5f 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,8 @@ Pyxform Changelog +# v1.11.1, 2022-11-18 +* Add __init__.py to `entities` package by @lognaturel in https://github.com/XLSForm/pyxform/pull/628 + # v1.11.0, 2022-11-18 * Accept more empty rows before stopping by @yanokwa in https://github.com/XLSForm/pyxform/pull/621 * Add initial support for entity creation by @lognaturel in https://github.com/XLSForm/pyxform/pull/624 diff --git a/README.rst b/README.rst index 068e00cb..d5750ae2 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ =============== -pyxform v1.11.0 +pyxform v1.11.1 =============== |python| |black| diff --git a/pyxform/__init__.py b/pyxform/__init__.py index c9eb4a33..25909eb8 100644 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -4,7 +4,7 @@ Collect easy. """ -__version__ = "1.11.0" +__version__ = "1.11.1" from pyxform.builder import ( SurveyElementBuilder, diff --git a/setup.py b/setup.py index d51700f5..45039b49 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pyxform", - version="1.11.0", + version="1.11.1", author="github.com/xlsform", author_email="info@xlsform.org", packages=find_packages(exclude=["tests", "tests.*"]),