diff --git a/CHANGELOG.md b/CHANGELOG.md index c632499..74e1c59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## 1.5.1 (2024-10-30) + +### Fix + +- typo in fmtm_splitter sql num_buildings substitution + ## 1.5.0 (2024-10-30) ### Feat diff --git a/Makefile b/Makefile index 50163fc..3ba8a03 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := fmtm-splitter -VERSION := 1.5.0 +VERSION := 1.5.1 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/fmtm_splitter/__version__.py b/fmtm_splitter/__version__.py index 5b60188..0f228f2 100644 --- a/fmtm_splitter/__version__.py +++ b/fmtm_splitter/__version__.py @@ -1 +1 @@ -__version__ = "1.5.0" +__version__ = "1.5.1" diff --git a/pyproject.toml b/pyproject.toml index 2efbd9f..e8f866d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,7 @@ pythonpath = "fmtm_splitter" [tool.commitizen] name = "cz_conventional_commits" -version = "1.5.0" +version = "1.5.1" version_files = [ "pyproject.toml:version", "fmtm_splitter/__version__.py",