From b9be5665c05d8dfb4fa474a6e8c43672c6825857 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9l=C3=A8ne=20Martin?= Date: Fri, 24 Jun 2022 15:13:05 -0700 Subject: [PATCH] Prepare v1.10.1 release (#613) --- CHANGES.txt | 3 +++ README.rst | 2 +- pyxform/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index d8731352..5e7b18cb 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,8 @@ Pyxform Changelog +# v1.10.1, 2022-06-24 +* avoid processing vast empty areas of buggy / strange workbooks by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/612 + # v1.10.0, 2022-04-25 * https://github.com/XLSForm/pyxform/pull/578 Add a lexer to identify dynamic defaults in expressions vs. strings diff --git a/README.rst b/README.rst index 17e811d4..9ad68415 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ =============== -pyxform v1.10.0 +pyxform v1.10.1 =============== |python| |black| diff --git a/pyxform/__init__.py b/pyxform/__init__.py index 01389371..fd65499c 100644 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -4,7 +4,7 @@ Collect easy. """ -__version__ = "1.10.0" +__version__ = "1.10.1" from pyxform.builder import ( SurveyElementBuilder, diff --git a/setup.py b/setup.py index c0c6c9db..6c79a3c1 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pyxform", - version="1.10.0", + version="1.10.1", author="github.com/xlsform", author_email="info@xlsform.org", packages=find_packages(exclude=["tests", "tests.*"]),