diff --git a/CHANGELOG.md b/CHANGELOG.md index fcac3808..b65f2f8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.11.0 (2024-06-05) + +### Feat + +- update buildings xlsform & add healthcare entity form +- add support for select_multiple in XLSForms (#257) + +### Fix + +- improve Amenities XLSForm & data model (#256) + ## 0.10.2 (2024-05-24) ### Fix diff --git a/Makefile b/Makefile index 4af46267..67af8095 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.10.2 +VERSION := 0.11.0 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index 17c1a626..ae6db5f1 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.10.2" +__version__ = "0.11.0" diff --git a/pyproject.toml b/pyproject.toml index d1d77a93..4264fd27 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,7 +59,7 @@ asyncio_mode="auto" [tool.commitizen] name = "cz_conventional_commits" -version = "0.10.2" +version = "0.11.0" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",