From 7f8a142773fd9d297f29684a7b5d960a095b055d Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Thu, 28 Nov 2024 08:07:46 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.16.10=20=E2=86=92=200.16.11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 12 ++++++++++++ Makefile | 2 +- osm_fieldwork/__version__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4be097f6..3e05874a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.16.11 (2024-11-28) + +### Feat + +- XLSForm move photo field outside verification group (#319) +- calculate coordinates of additional in xlsform entity (#312) +- sanitize column names to follow defined standards (#313) + +### Fix + +- update labels and entities name in test cases following recent changes in update_xls_form (#317) + ## 0.16.10 (2024-11-06) ## 0.16.9 (2024-10-18) diff --git a/Makefile b/Makefile index 18dcc7f7..efda3199 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.16.10 +VERSION := 0.16.11 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index 690e6889..bac41ffe 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.16.10" +__version__ = "0.16.11" diff --git a/pyproject.toml b/pyproject.toml index fb7a0fd5..56284f66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,7 +92,7 @@ asyncio_mode="auto" [tool.commitizen] name = "cz_conventional_commits" -version = "0.16.10" +version = "0.16.11" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",