diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e891a965..792ef5820 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.14.1 (2024-07-30) + +### Fix + +- generating pmtiles with different file extensions, update XLSForm ordering (#278) +- improve validation for OdkDataset.createDataset properties + +### Refactor + +- clarify in logs the projectId is for ODK + ## 0.14.0 (2024-07-29) ### Feat diff --git a/Makefile b/Makefile index 7d07a0788..4bd2bdb62 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.14.0 +VERSION := 0.14.1 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index 9e78220f9..f075dd36a 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.14.0" +__version__ = "0.14.1" diff --git a/pyproject.toml b/pyproject.toml index 1e514860d..a7b1ce08c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,7 +58,7 @@ asyncio_mode="auto" [tool.commitizen] name = "cz_conventional_commits" -version = "0.14.0" +version = "0.14.1" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",