From 1abc8e5a9d21b0af6f6db23a0795246bb9b4dce7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9l=C3=A8ne=20Martin?= Date: Mon, 22 Feb 2021 20:55:41 -0800 Subject: [PATCH] Update version to v1.4.0 --- CHANGES.txt | 7 +++++++ README.rst | 2 +- pyxform/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 76191fe12..f4a24c4c3 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,13 @@ Pyxform Changelog +# v1.4.0, 2021-02-23 + +* #514 Fix circular reference error raised when converting an XLSX form with multiple languages to JSON + * Davis Raymond @DavisRayM (Ona) +* #519 Add support for odk:recordaudio + * Callum Stott @seadowg (ODK) + # v1.3.4, 2021-01-15 * #510 Show a more helpful error message is section name is equal to form name diff --git a/README.rst b/README.rst index 967d0d259..6da4a48b4 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ =============== -pyxform v1.3.4 +pyxform v1.4.0 =============== |circleci| |appveyor| |codecov| |black| diff --git a/pyxform/__init__.py b/pyxform/__init__.py index ba446e28e..0fc9d6e99 100644 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -4,7 +4,7 @@ Collect easy. """ -__version__ = "1.3.4" +__version__ = "1.4.0" from pyxform.builder import ( SurveyElementBuilder, diff --git a/setup.py b/setup.py index 5e6d10ff7..f90df6130 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name="pyxform", - version="1.3.4", + version="1.4.0", author="github.com/xlsform", author_email="info@xlsform.org", packages=find_packages(),