From 405caf5928073ff31541bf1eecf7ffb6c3193e59 Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Thu, 29 Feb 2024 12:02:28 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.5.0=20=E2=86=92=200.5.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ Makefile | 2 +- osm_fieldwork/__version__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 794075a3..73a6b627 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.5.1 (2024-02-29) + +### Fix + +- rename form_fields --> formFields and handle all http errors (#230) + ## 0.5.0 (2024-02-28) ### Feat diff --git a/Makefile b/Makefile index 31c67b5c..80836f6d 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.5.0 +VERSION := 0.5.1 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index 3d187266..dd9b22cc 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.5.0" +__version__ = "0.5.1" diff --git a/pyproject.toml b/pyproject.toml index 5a6681c5..7446c197 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ pythonpath = "osm_fieldwork" [tool.commitizen] name = "cz_conventional_commits" -version = "0.5.0" +version = "0.5.1" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",