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",