From 4c2b7f4c1fc7b74c651c86116a0ad19df51d23a9 Mon Sep 17 00:00:00 2001 From: Dickson Ukang'a Date: Thu, 5 Apr 2018 15:32:38 +0300 Subject: [PATCH] Bump pyxform version to 0.11.0 --- CHANGES.txt | 53 +++++++++++++++++++++++++++++++++++++++++++++ pyxform/__init__.py | 2 +- setup.py | 5 ++++- 3 files changed, 58 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 41ac84147..9ee4adf1e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,57 @@ Pyxform Changelog +v0.11.0, 2018 08 05 + -- Code cleanup, remove no-op XML formatting code + Issue #148, https://github.com/XLSForm/pyxform/pull/148 + [alxndrsn] + + -- Workarounds for PyInstaller on Windows + Issue #166, https://github.com/XLSForm/pyxform/pull/166 + [yanokwa] + + -- Add type=xml-external + Issue #107, https://github.com/XLSForm/pyxform/issues/107 + [lindsay-stevens] + + -- Add Enketo Validate, you can now validate XForms with Enketo's + form engine - https://github.com/enketo/enketo-validate. + Issue #163, https://github.com/XLSForm/pyxform/issues/163 + [lindsay-stevens] + + -- Added odk XML namespace xmlns:odk + Issue #172, https://github.com/XLSForm/pyxform/pull/172 + [Archaejohn] + + -- Error message formatting update + Issue #173, https://github.com/XLSForm/pyxform/pull/173 + [yanokwa] + + -- Add support for auto_send and auto_delete settings + Issue #126, https://github.com/XLSForm/pyxform/issues/126 + [lognaturel] + + -- Fixed Python3 unchr is not defined in pyxform/utils.py error + Issue #161, https://github.com/XLSForm/pyxform/issues/161 + [shivareddyiirs] + + -- Handle ODK Validate error strings with unicode + Issue #72, https://github.com/XLSForm/pyxform/issues/72 + [lognaturel] + + -- Error on question names with same name different cases + Issue #174, https://github.com/XLSForm/pyxform/issues/174 + [moshthepitt] + + -- Warn on languanges that don't have a valid IANA subtag + Issue #143, https://github.com/XLSForm/pyxform/issues/143 + [lognaturel] + + -- Python 3 encoding check + Issue #186, https://github.com/XLSForm/pyxform/pull/186 + [pld] + + -- Upgrade to ODK Validate v1.9.0 + Issue #188, https://github.com/XLSForm/pyxform/pull/188 + [lognaturel] v0.10.0, 2017 11 08 -- Add support for numeric range questions (Issue #79) diff --git a/pyxform/__init__.py b/pyxform/__init__.py index 0e7306e95..339980c4c 100755 --- a/pyxform/__init__.py +++ b/pyxform/__init__.py @@ -3,7 +3,7 @@ Collect easy. """ -__version__ = '0.10.0' +__version__ = '0.11.0' from pyxform.survey import Survey # noqa from pyxform.section import Section # noqa diff --git a/setup.py b/setup.py index 3a847b40a..80e77c68d 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,11 @@ +# -*- coding: utf-8 -*- +"""Pyxform - Python library that converts XLSForms to XForms. +""" from setuptools import setup, find_packages setup( name='pyxform', - version='0.10.0', + version='0.11.0', author='github.com/xlsform', author_email='info@xlsform.org', packages=find_packages(),