diff --git a/CHANGELOG.md b/CHANGELOG.md index c17d0e0e0..59676b757 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.12.1 (2024-06-19) + +### Fix + +- update entity xlsforms with working save_to field for status +- json2osm invalid merge, fix syntax + ## 0.12.0 (2024-06-19) ### Feat diff --git a/Makefile b/Makefile index 6d0bba126..25fc14fc8 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.12.0 +VERSION := 0.12.1 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index ea370a8e5..def467e07 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.12.0" +__version__ = "0.12.1" diff --git a/pyproject.toml b/pyproject.toml index 75b6b1cc4..9fcd87110 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,7 +59,7 @@ asyncio_mode="auto" [tool.commitizen] name = "cz_conventional_commits" -version = "0.12.0" +version = "0.12.1" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",