diff --git a/CHANGELOG.md b/CHANGELOG.md index b8101db..80a7991 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # CHANGELOG +## 1.1.0 (2024-02-08) + +### Feat + +- parse multigeom aois with convex hull + +### Fix + +- command line usage of split by sql algo + +### Refactor + +- replace data extract parsing with staticmethod + ## 1.0.0 (2024-01-30) ### Fix diff --git a/Makefile b/Makefile index cead0a7..af42ceb 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := fmtm-splitter -VERSION := 1.0.0 +VERSION := 1.1.0 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/fmtm_splitter/__version__.py b/fmtm_splitter/__version__.py index 5becc17..6849410 100644 --- a/fmtm_splitter/__version__.py +++ b/fmtm_splitter/__version__.py @@ -1 +1 @@ -__version__ = "1.0.0" +__version__ = "1.1.0" diff --git a/pyproject.toml b/pyproject.toml index 679f2f9..c658e49 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ pythonpath = "fmtm_splitter" [tool.commitizen] name = "cz_conventional_commits" -version = "1.0.0" +version = "1.1.0" version_files = [ "pyproject.toml:version", "fmtm_splitter/__version__.py",