Skip to content

Commit

Permalink
Bump pyxform version to 0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ukanga committed Apr 9, 2018
1 parent 3d9ab1e commit c0889f6
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
Pyxform Changelog

v0.11.2, (Unreleased)
-- no changes yet

v0.11.2, 2018 08 09
-- Add iana_subtags.txt to package,
Issue #191, https://github.com/XLSForm/pyxform/issues/191
[yanokwa]

v0.11.0, 2018 08 05
-- Code cleanup, remove no-op XML formatting code
Issue #148, https://github.com/XLSForm/pyxform/pull/148
Expand Down
18 changes: 13 additions & 5 deletions pyxform/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,22 @@
Collect easy.
"""

__version__ = '0.11.0'
__version__ = '0.11.1'

from pyxform.survey import Survey # noqa
from pyxform.section import Section # noqa
from pyxform.question import MultipleChoiceQuestion, InputQuestion, Question # noqa
from pyxform.builder import (
SurveyElementBuilder,
create_survey, # noqa
create_survey_element_from_dict,
create_survey_from_path,
create_survey_from_xls)
from pyxform.instance import SurveyInstance # noqa
from pyxform.builder import SurveyElementBuilder, create_survey_from_xls, create_survey_element_from_dict, create_survey, create_survey_from_path # noqa
from pyxform.question import (
InputQuestion,
MultipleChoiceQuestion, # noqa
Question)
from pyxform.question_type_dictionary import QUESTION_TYPE_DICT # noqa
from pyxform.section import Section # noqa
from pyxform.survey import Survey # noqa
from pyxform.xls2json import SurveyReader as ExcelSurveyReader # noqa

# This is what gets imported when someone imports pyxform
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='pyxform',
version='0.11.0',
version='0.11.1',
author='github.com/xlsform',
author_email='[email protected]',
packages=find_packages(),
Expand Down

0 comments on commit c0889f6

Please sign in to comment.