Skip to content

Commit

Permalink
Merge pull request #626 from lognaturel/prep-release
Browse files Browse the repository at this point in the history
Prep release
  • Loading branch information
yanokwa authored Nov 19, 2022
2 parents d9413b5 + 272272f commit c4d9138
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Pyxform Changelog

# v1.11.0, 2022-11-18
* Accept more empty rows before stopping by @yanokwa in https://github.com/XLSForm/pyxform/pull/621
* Add initial support for entity creation by @lognaturel in https://github.com/XLSForm/pyxform/pull/624

# v1.10.1, 2022-06-24
* avoid processing vast empty areas of buggy / strange workbooks by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/612

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
===============
pyxform v1.10.1
pyxform v1.11.0
===============

|python| |black|
Expand Down
2 changes: 1 addition & 1 deletion pyxform/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Collect easy.
"""

__version__ = "1.10.1"
__version__ = "1.11.0"

from pyxform.builder import (
SurveyElementBuilder,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="pyxform",
version="1.10.1",
version="1.11.0",
author="github.com/xlsform",
author_email="[email protected]",
packages=find_packages(exclude=["tests", "tests.*"]),
Expand Down
5 changes: 3 additions & 2 deletions tests/test_xlsform_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def test_warnings__count(self):
| | select_multiple yes_no | select_multiple_test | select multiple test | | minimal | | | |
| | end group | adsaf | | | | | | |
| | begin group | labeled_select_group | labeled select group test | | field-list | | | |
| | text | inside | Inside | |
| | end group | | | | | | | |
| | begin group | name | | | table-list | | | |
| | select_one yes_no | table_list_question | table list question | hint | | | | |
Expand Down Expand Up @@ -67,8 +68,8 @@ def test_warnings__count(self):
"On the choices sheet there is a option with no label. [list_name : animals]",
"[row : 9] Repeat has no label: {'name': 'repeat_test', 'type': 'begin repeat'}",
"[row : 10] Group has no label: {'name': 'group_test', 'type': 'begin group'}",
"[row : 16] Group has no label: {'name': 'name', 'type': 'begin group'}",
"[row : 27] Use the max-pixels parameter to speed up submission "
"[row : 17] Group has no label: {'name': 'name', 'type': 'begin group'}",
"[row : 28] Use the max-pixels parameter to speed up submission "
+ "sending and save storage space. Learn more: https://xlsform.org/#image",
]
self.assertListEqual(expected, warnings)
Expand Down

0 comments on commit c4d9138

Please sign in to comment.