diff --git a/CHANGES.txt b/CHANGES.txt index 4b13179f8..beb72b53c 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,10 @@ Pyxform Changelog +# v1.3.1, 2020-12-09 + +* #493 Make value ref dynamic for selects from repeats + * Hélène Martin @lognaturel (ODK) + # v1.3.0, 2020-12-08 * #478 Output absolute ref attribute in trigger referring to repeat question diff --git a/README.rst b/README.rst index c017af524..4613b1467 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ =============== -pyxform v1.3.0 +pyxform v1.3.1 =============== |circleci| |appveyor| |codecov| |black| diff --git a/pyxform/__init__.py b/pyxform/__init__.py index 57dfb9f6e..4e7a620fc 100644 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -4,7 +4,7 @@ Collect easy. """ -__version__ = "1.3.0" +__version__ = "1.3.1" from pyxform.builder import ( SurveyElementBuilder, diff --git a/setup.py b/setup.py index 5715fb4d6..4a845bd55 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name="pyxform", - version="1.3.0", + version="1.3.1", author="github.com/xlsform", author_email="info@xlsform.org", packages=find_packages(),