diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a1d15e2..42f1650b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.5.3 (2024-03-05) + +### Fix + +- **odk**: upload media failing validation if extension stripped accidentally +- argparse parsing of bbox string +- default outdir to current working dir +- optional bbox as space separated and comma separated +- add correct typing for bbox var and return types + ## 0.5.2 (2024-03-04) ### Fix diff --git a/Makefile b/Makefile index a17eba79..d8fdb1b8 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.5.2 +VERSION := 0.5.3 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index 72251527..43a1e95b 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.5.2" +__version__ = "0.5.3" diff --git a/pyproject.toml b/pyproject.toml index d318951c..6fc45701 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ pythonpath = "osm_fieldwork" [tool.commitizen] name = "cz_conventional_commits" -version = "0.5.2" +version = "0.5.3" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",