From 4f0931dccef4e258cc19a3154cd47e7f4bc446e5 Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Fri, 20 Sep 2024 21:42:56 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.16.3=20=E2=86=92=200.16.4?= 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 df6525a4..74a375db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.16.4 (2024-09-20) + +### Fix + +- start work matching xlsform translation columns +- minor fixes to xlsforms, add group to digitisation form +- append a dummy task_id entry to xlsform if not specified + +### Refactor + +- refactor update_xlsform for readability + minor bugfixes + ## 0.16.3 (2024-09-19) ### Fix diff --git a/Makefile b/Makefile index 68bbf2b9..6b5e03bc 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.16.3 +VERSION := 0.16.4 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index 755df905..abd732c5 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.16.3" +__version__ = "0.16.4" diff --git a/pyproject.toml b/pyproject.toml index da409939..8f6ecec2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,7 @@ asyncio_mode="auto" [tool.commitizen] name = "cz_conventional_commits" -version = "0.16.3" +version = "0.16.4" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",