From e0e72999bd2356593814744de94c1354848d2b6c Mon Sep 17 00:00:00 2001 From: Ukang'a Dickson Date: Wed, 20 Feb 2019 11:27:11 +0300 Subject: [PATCH] Release version 0.13.1 (#268) --- 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 5acc1d953..0ba855681 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,10 @@ Pyxform Changelog +v0.13.1, 2019 02 19 + -- Ensure parameters are typed properly + Issue #267, https://github.com/XLSForm/pyxform/pull/267 + [yanokwa] + v0.13.0, 2019 02 19 -- Add Validate v1.11.0 with JavaRosa v2.13.0 Issue #264, https://github.com/XLSForm/pyxform/issues/264 diff --git a/README.rst b/README.rst index 623de8749..a5f7c3fe7 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ =============== -pyxform v0.13.X +pyxform v0.13.x =============== |circleci| |appveyor| diff --git a/pyxform/__init__.py b/pyxform/__init__.py index 1b0ab6ab4..caeebde99 100644 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -3,7 +3,7 @@ Collect easy. """ -__version__ = '0.13.0' +__version__ = '0.13.1' from pyxform.builder import (SurveyElementBuilder, create_survey, # noqa create_survey_element_from_dict, diff --git a/setup.py b/setup.py index 201146d50..30eec824f 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name='pyxform', - version='0.13.0', + version='0.13.1', author='github.com/xlsform', author_email='info@xlsform.org', packages=find_packages(),