From 62c26ce37c6e61441d4c5b30026df70868bf6b7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9l=C3=A8ne=20Martin?= Date: Thu, 19 Jan 2023 16:28:49 -0800 Subject: [PATCH] Prepare v1.12 release (#639) --- CHANGES.txt | 5 +++++ README.rst | 2 +- pyxform/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 355dec5f..3ba3e4fa 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,10 @@ Pyxform Changelog +v1.12.0, 2023-01-19 +* Add support for big-image by @lognaturel in https://github.com/XLSForm/pyxform/pull/635 +* Show error when there are `save_to`s in a repeat, simplify entities tests by @lognaturel in https://github.com/XLSForm/pyxform/pull/636 +* Ignore media column if it is present by @lognaturel in https://github.com/XLSForm/pyxform/pull/638 + # v1.11.1, 2022-11-18 * Add __init__.py to `entities` package by @lognaturel in https://github.com/XLSForm/pyxform/pull/628 diff --git a/README.rst b/README.rst index d5750ae2..fafac7d3 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ =============== -pyxform v1.11.1 +pyxform v1.12.0 =============== |python| |black| diff --git a/pyxform/__init__.py b/pyxform/__init__.py index 25909eb8..3757974b 100644 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -4,7 +4,7 @@ Collect easy. """ -__version__ = "1.11.1" +__version__ = "1.12.0" from pyxform.builder import ( SurveyElementBuilder, diff --git a/setup.py b/setup.py index 45039b49..9bb07779 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pyxform", - version="1.11.1", + version="1.12.0", author="github.com/xlsform", author_email="info@xlsform.org", packages=find_packages(exclude=["tests", "tests.*"]),