From 97f5b28af4059a18568e4a40bc4b50d23afbee04 Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Sun, 24 Mar 2024 09:32:49 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.5.4=20=E2=86=92=200.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 ++++++++++ Makefile | 2 +- osm_fieldwork/__version__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ccdc6a399..01abf4031 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.6.0 (2024-03-24) + +### Feat + +- v1 entities implementation in OdkCentral.py (#245) + +### Refactor + +- use logger.basicConfig for verbose flag (#244) + ## 0.5.4 (2024-03-19) ### Fix diff --git a/Makefile b/Makefile index e629db94d..7cd9319dd 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.5.4 +VERSION := 0.6.0 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index 6b27eeebf..906d362f7 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.5.4" +__version__ = "0.6.0" diff --git a/pyproject.toml b/pyproject.toml index 1d574c8c5..dfaa2fe35 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ pythonpath = "osm_fieldwork" [tool.commitizen] name = "cz_conventional_commits" -version = "0.5.4" +version = "0.6.0" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",