From 999b2a63d4880dbe2230023cf6a4ffba91c119d1 Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Mon, 14 Oct 2024 18:51:18 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.3.1=20=E2=86=92=201.3.2?= 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 +- fmtm_splitter/map_call.overpassql | 7 ------- pyproject.toml | 2 +- 5 files changed, 14 insertions(+), 10 deletions(-) delete mode 100644 fmtm_splitter/map_call.overpassql diff --git a/CHANGELOG.md b/CHANGELOG.md index f7e88cb..65406a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG +## 1.3.2 (2024-10-14) + +### Fix + +- remove osm-extracts from split by square +- invalid inclusion of alias to get num_buildings by pre-commit + +### Refactor + +- move old splitting algorithm parts --> postgis_snippets + ## 1.3.1 (2024-09-22) ### Fix diff --git a/Makefile b/Makefile index e038b20..8a3349e 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := fmtm-splitter -VERSION := 1.3.1 +VERSION := 1.3.2 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/fmtm_splitter/__version__.py b/fmtm_splitter/__version__.py index 9c73af2..f708a9b 100644 --- a/fmtm_splitter/__version__.py +++ b/fmtm_splitter/__version__.py @@ -1 +1 @@ -__version__ = "1.3.1" +__version__ = "1.3.2" diff --git a/fmtm_splitter/map_call.overpassql b/fmtm_splitter/map_call.overpassql deleted file mode 100644 index 667aeaa..0000000 --- a/fmtm_splitter/map_call.overpassql +++ /dev/null @@ -1,7 +0,0 @@ -[out:xml]; -( - node({{bbox}}); - <; -); -out meta; - diff --git a/pyproject.toml b/pyproject.toml index a1ce004..e8a8b65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ pythonpath = "fmtm_splitter" [tool.commitizen] name = "cz_conventional_commits" -version = "1.3.1" +version = "1.3.2" version_files = [ "pyproject.toml:version", "fmtm_splitter/__version__.py",