From 43e478535ac162f656108214ee6943710a9bba48 Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Fri, 12 Jul 2024 09:53:27 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.12.4=20=E2=86=92=200.13.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 13 +++++++++++++ Makefile | 2 +- osm_fieldwork/__version__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f402581..eb262a03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.13.0 (2024-07-12) + +### Fix + +- update xlsforms to hide required choices tab values +- add minzoom and maxzoom params to basemapper to allow view past zoom 18 (#267) +- self.data is now a list to be consistent with the other parsers (#264) + +### Refactor + +- delete unused scripts and update the docs (#269) +- remove test_conflation prior to odk_merge drop + ## 0.12.4 (2024-06-20) ### Fix diff --git a/Makefile b/Makefile index b4a9b3c1..7eedeb90 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.12.4 +VERSION := 0.13.0 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index 6dd4954d..f23a6b39 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.12.4" +__version__ = "0.13.0" diff --git a/pyproject.toml b/pyproject.toml index 3dd1980b..1b0e4f1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,7 +58,7 @@ asyncio_mode="auto" [tool.commitizen] name = "cz_conventional_commits" -version = "0.12.4" +version = "0.13.0" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",