diff --git a/CHANGES.txt b/CHANGES.txt index 044fecfcd..66054c350 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,24 @@ Pyxform Changelog +# v1.2.0, 2020-09-10 + +* #436 support another java version string for 9-internal + * @kenhorn +* #438 Add "trigger" column to use value changes as triggers for calculations + * Agus Hilman @gushil (OpenClinica) and Hélène Martin @lognaturel (Nafundi) +* #70 Add non-string calculation types + * Agus Hilman @gushil (OpenClinica) and Hélène Martin @lognaturel (Nafundi) +* #458 New non-text calculations output a missing-label warning + * Agus Hilman @gushil (OpenClinica) +* #456 Fix calculate with dynamic default + * Agus Hilman @gushil (OpenClinica) +* #457 Triggers referring to hidden question will produce an error + * Agus Hilman @gushil (OpenClinica) +* #450 Fixed inside repeat has absolute path instead of relative + * Agus Hilman @gushil (OpenClinica) +* #468 Fixed duplicate label translations for secondary itemsets and use itextID for selects with choices that have media specified + * Davis Raymond @DavisRayM (Ona) + # v1.1.0, 2020-02-17 * #429 Adding a hash to properly route to the choicenames url diff --git a/README.rst b/README.rst index 8c0778f32..4ecb109ee 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ =============== -pyxform v1.1.0 +pyxform v1.2.0 =============== |circleci| |appveyor| |codecov| |black| diff --git a/pyxform/__init__.py b/pyxform/__init__.py index 4512ec87c..aefb76af1 100644 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -4,7 +4,7 @@ Collect easy. """ -__version__ = "1.1.0" +__version__ = "1.2.0" from pyxform.builder import ( SurveyElementBuilder, diff --git a/setup.py b/setup.py index 303d35ee8..461b78d6b 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name="pyxform", - version="1.1.0", + version="1.2.0", author="github.com/xlsform", author_email="info@xlsform.org", packages=find_packages(),