From 2494038b52cd6833a6955caf0686827289665bca Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Sat, 18 Nov 2023 05:22:45 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.3.7=20=E2=86=92=200.3.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 11 +++++++++++ Makefile | 2 +- osm_fieldwork/__version__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10a2358d..73b53010 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.3.8 (2023-11-18) + +### Fix + +- Make less verbose +- Always escape the value for embedded quotes +- Fix bug with referencing an out of scope variable +- Use geojson instead of json to read in the boundary file +- Don't call OsmFile.footer, it's now handled by a destructor +- Add link to XLSForm design doc + ## 0.3.7 (2023-10-23) ### Fix diff --git a/Makefile b/Makefile index 50c95d11..78017f89 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.3.7 +VERSION := 0.3.8 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index 8879c6c7..4ad67eb7 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.3.7" +__version__ = "0.3.8" diff --git a/pyproject.toml b/pyproject.toml index 0ca77929..c4726107 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,7 +61,7 @@ pythonpath = "osm_fieldwork" [tool.commitizen] name = "cz_conventional_commits" -version = "0.3.7" +version = "0.3.8" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",