From a2132ffd5e683f2ddd189e135d0d12ab05797baa Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Wed, 5 Jun 2024 09:56:17 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.2.1=20=E2=86=92=201.2.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 9 +++++++++ Makefile | 2 +- fmtm_splitter/__version__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84bcfb4..502224b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # CHANGELOG +## 1.2.2 (2024-06-05) + +### Refactor + +- run sqlfluff and format sql files +- simplified the boundary of splitted ploygons and removed hardcoded buildings number +- removed redundant sql +- updated algorithm to split aoi when no linear features, by clustering + ## 1.2.1 (2024-03-21) ### Fix diff --git a/Makefile b/Makefile index 2e03c16..c920b80 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := fmtm-splitter -VERSION := 1.2.1 +VERSION := 1.2.2 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/fmtm_splitter/__version__.py b/fmtm_splitter/__version__.py index a955fda..bc86c94 100644 --- a/fmtm_splitter/__version__.py +++ b/fmtm_splitter/__version__.py @@ -1 +1 @@ -__version__ = "1.2.1" +__version__ = "1.2.2" diff --git a/pyproject.toml b/pyproject.toml index 03104fa..ee0a090 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ pythonpath = "fmtm_splitter" [tool.commitizen] name = "cz_conventional_commits" -version = "1.2.1" +version = "1.2.2" version_files = [ "pyproject.toml:version", "fmtm_splitter/__version__.py",