diff --git a/CHANGELOG.md b/CHANGELOG.md index a88eba48..5262f5b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.15.0 (2024-08-27) + +### Feat + +- function to append mandatory fields into fmtm custom xls form (#289) +- created a function to get submission photo by its submission id (#284) + +### Fix + +- Fix writing nodes with no tags, ie... what the way references, and only write the note for ways (#290) +- don't add the note about duplication, that should be done at a higher level (#287) + ## 0.14.3 (2024-08-08) ### Fix diff --git a/Makefile b/Makefile index bad11dd7..31982a86 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.14.3 +VERSION := 0.15.0 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index 23f00709..9da2f8fc 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.14.3" +__version__ = "0.15.0" diff --git a/pyproject.toml b/pyproject.toml index 756617f1..56257f22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,7 +58,7 @@ asyncio_mode="auto" [tool.commitizen] name = "cz_conventional_commits" -version = "0.14.3" +version = "0.15.0" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",