Skip to content

Commit

Permalink
Merge pull request #705 from lognaturel/prep-2.0.3
Browse files Browse the repository at this point in the history
Prep 2.0.3
  • Loading branch information
lognaturel authored Apr 18, 2024
2 parents f524ae7 + ea21a60 commit e25612e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Pyxform Changelog

v2.0.3, 2024-04-18
* Don't use regex to clean up XML following pretty-printing by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/681
* dev: update dependencies, testing, packaging, and linting/formatting by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/685
* Address search and pulldata secondary instance conflict by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/697
* Include project status and related work in readme by @lognaturel in https://github.com/XLSForm/pyxform/pull/700

v2.0.2, 2024-01-26
* Generate translations for choice list used with search() by @lindsay-stevens in https://github.com/XLSForm/pyxform/pull/690

Expand Down
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Before committing, make sure to format and lint the code using ``ruff``::
ruff format pyxform tests
ruff check pyxform tests

If you are using a copy of ``ruff`` outside your virtualenv, make sure it is the same version as listed in ``pyproject.toml``. Use the project configuration for ``ruff` in ``pyproject.toml``, which occurs automatically if ``ruff`` is run from the project root (where ``pyproject.toml`` is).
If you are using a copy of ``ruff`` outside your virtualenv, make sure it is the same version as listed in ``pyproject.toml``. Use the project configuration for ``ruff`` in ``pyproject.toml``, which occurs automatically if ``ruff`` is run from the project root (where ``pyproject.toml`` is).

Contributions
-------------
Expand All @@ -126,9 +126,9 @@ Documentation
For developers, ``pyxform`` uses docstrings, type annotations, and test cases. Most modern IDEs can display docstrings and type annotations in a easily navigable format, so no additional docs are compiled (e.g. sphinx). In addition to the user documentation, developers should be familiar with the `ODK XForms Specification https://getodk.github.io/xforms-spec/`.

For users, ``pyxform`` has documentation at the following locations:
* `XLSForm docs https://xlsform.org/`
* `XLSForm template https://docs.google.com/spreadsheets/d/1v9Bumt3R0vCOGEKQI6ExUf2-8T72-XXp_CbKKTACuko/edit#gid=1052905058`
* `ODK Docs https://docs.getodk.org/`
* `XLSForm docs <https://xlsform.org/>`_
* `XLSForm template <https://docs.google.com/spreadsheets/d/1v9Bumt3R0vCOGEKQI6ExUf2-8T72-XXp_CbKKTACuko/edit#gid=1052905058>`_
* `ODK Docs <https://docs.getodk.org/>`_

Change Log
==========
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[project]
name = "pyxform"
version = "2.0.0"
version = "2.0.3"
authors = [
{name = "github.com/xlsform", email = "info@xlsform.org"},
{name = "github.com/xlsform", email = "support@getodk.org"},
]
description = "A Python package to create XForms for ODK Collect."
readme = "README.rst"
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__ = "2.0.2"
__version__ = "2.0.3"

from pyxform.builder import (
SurveyElementBuilder,
Expand Down

0 comments on commit e25612e

Please sign in to comment.