diff --git a/CHANGELOG.md b/CHANGELOG.md index a8329afa..18fec157 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.16.9 (2024-10-18) + +### Fix + +- create_if and update_if column in entity sheet (#307) + ## 0.16.8 (2024-09-30) ### Fix diff --git a/Makefile b/Makefile index 8e86929d..fa77338c 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.16.8 +VERSION := 0.16.9 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index 9027351f..8bc9d148 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.16.8" +__version__ = "0.16.9" diff --git a/pyproject.toml b/pyproject.toml index 87930432..4c091727 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,7 @@ asyncio_mode="auto" [tool.commitizen] name = "cz_conventional_commits" -version = "0.16.8" +version = "0.16.9" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",