From 8119b91bb5511fb0a06e9e386de5ef5ae09ade23 Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Sun, 22 Sep 2024 00:42:48 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.3.0=20=E2=86=92=201.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 11 +++++++++++ Makefile | 2 +- fmtm_splitter/__version__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa0a302..f7e88cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG +## 1.3.1 (2024-09-22) + +### Fix + +- merge holes with neighboring polygons +- If --extract is used, it needs to be passed to split_by_square() + +### Refactor + +- pass args.data_extract and have parsing function handle it + ## 1.3.0 (2024-07-12) ### Feat diff --git a/Makefile b/Makefile index 99ebe33..e038b20 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := fmtm-splitter -VERSION := 1.3.0 +VERSION := 1.3.1 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/fmtm_splitter/__version__.py b/fmtm_splitter/__version__.py index 67bc602..9c73af2 100644 --- a/fmtm_splitter/__version__.py +++ b/fmtm_splitter/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0" +__version__ = "1.3.1" diff --git a/pyproject.toml b/pyproject.toml index 0002953..a1ce004 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ pythonpath = "fmtm_splitter" [tool.commitizen] name = "cz_conventional_commits" -version = "1.3.0" +version = "1.3.1" version_files = [ "pyproject.toml:version", "fmtm_splitter/__version__.py",