From d81fbffe528f8b7a695f6edd96001bda6f52bd0b Mon Sep 17 00:00:00 2001 From: Yaw Anokwa Date: Wed, 20 Oct 2021 10:17:14 -0700 Subject: [PATCH] Prepare for v1.7.0 --- CHANGES.txt | 15 +++++++++++++++ README.rst | 2 +- pyxform/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 7d285f3c..330d4501 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,20 @@ Pyxform Changelog +# v1.7.0, 2021-10-20 + +* #545 Add allow-mock-accuracy parameter + * Callum Sott @seadowg (ODK) +* #560 Add default value support for image questions #405 + * Vincent Buscarello @KeynesYouDigIt +* #559 Avoid recursion depth error for label with many references + * Lindsay Stevens @lindsay-stevens (ODK) +* #548 Add test methods to check xml hierarchy + * Lindsay Stevens @lindsay-stevens (ODK) +* #559 Avoid recursion depth error for label with many references + * Lindsay Stevens @lindsay-stevens (ODK) +* #562 Clean up dependencies, py2 code, etc + * Lindsay Stevens @lindsay-stevens (ODK) + # v1.6.0, 2021-09-01 * #547 Fix parsing of (multiple) pulldata calls in a (multi-line) expression diff --git a/README.rst b/README.rst index 7f658625..9731c98e 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ =============== -pyxform v1.6.0 +pyxform v1.7.0 =============== |circleci| |appveyor| |codecov| |python| |black| diff --git a/pyxform/__init__.py b/pyxform/__init__.py index aa7feb72..405d351b 100644 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -4,7 +4,7 @@ Collect easy. """ -__version__ = "1.6.0" +__version__ = "1.7.0" from pyxform.builder import ( SurveyElementBuilder, diff --git a/setup.py b/setup.py index 41c23be7..088e9174 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pyxform", - version="1.6.0", + version="1.7.0", author="github.com/xlsform", author_email="info@xlsform.org", packages=find_packages(exclude=["tests", "tests.*"]),