diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cf6359..84bcfb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## 1.2.1 (2024-03-21) + +### Fix + +- clip square grid with AOI + ## 1.2.0 (2024-03-08) ### Feat diff --git a/Makefile b/Makefile index 2602572..2e03c16 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := fmtm-splitter -VERSION := 1.2.0 +VERSION := 1.2.1 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/fmtm_splitter/__version__.py b/fmtm_splitter/__version__.py index c68196d..a955fda 100644 --- a/fmtm_splitter/__version__.py +++ b/fmtm_splitter/__version__.py @@ -1 +1 @@ -__version__ = "1.2.0" +__version__ = "1.2.1" diff --git a/pyproject.toml b/pyproject.toml index 6611a10..954c63f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ pythonpath = "fmtm_splitter" [tool.commitizen] name = "cz_conventional_commits" -version = "1.2.0" +version = "1.2.1" version_files = [ "pyproject.toml:version", "fmtm_splitter/__version__.py",