From 960f8b3029f10e775dfc4be0479e4bdd7629e329 Mon Sep 17 00:00:00 2001 From: Niraj Adhikari Date: Thu, 18 Jan 2024 17:59:27 +0545 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.4.0=20=E2=86=92=200.4.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 15 +++++++++++++++ Makefile | 2 +- osm_fieldwork/__version__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53274f45..4c309d6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## 0.4.1 (2024-01-18) + +### Fix + +- For ODK, make sure there is always a label & title +- Fix logging, and fix polygon vs centroid +- Be less verbose with debugging +- Improve the values for the tags so it actually works +- Add filter_data api doc + +### Refactor + +- return full submissions detail +- add param debug log during basemap generation + ## 0.4.0 (2023-12-05) ### Feat diff --git a/Makefile b/Makefile index 1dfc24cf..cd39a430 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.4.0 +VERSION := 0.4.1 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index 6a9beea8..3d26edf7 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.4.0" +__version__ = "0.4.1" diff --git a/pyproject.toml b/pyproject.toml index 389d16a7..ad030e6a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,7 +59,7 @@ pythonpath = "osm_fieldwork" [tool.commitizen] name = "cz_conventional_commits" -version = "0.4.0" +version = "0.4.1" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",