diff --git a/CHANGELOG.md b/CHANGELOG.md index 8edba541..a8329afa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.16.8 (2024-09-30) + +### Fix + +- remove multiple duplicates in choice sheets + ## 0.16.7 (2024-09-24) ### Fix diff --git a/Makefile b/Makefile index 39ea4a69..8e86929d 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.16.7 +VERSION := 0.16.8 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index 53d3b0d4..9027351f 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.16.7" +__version__ = "0.16.8" diff --git a/pyproject.toml b/pyproject.toml index 1a80a55b..87930432 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,7 @@ asyncio_mode="auto" [tool.commitizen] name = "cz_conventional_commits" -version = "0.16.7" +version = "0.16.8" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",