diff --git a/CHANGELOG.md b/CHANGELOG.md index 502224b..fa0a302 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # CHANGELOG +## 1.3.0 (2024-07-12) + +### Feat + +- added data extracts to avoid creating tasks with no features + +### Fix + +- precommit +- check the lines count excluding minor highway tags + +### Refactor + +- use default line length 88 (over 132) + ## 1.2.2 (2024-06-05) ### Refactor diff --git a/Makefile b/Makefile index c920b80..99ebe33 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := fmtm-splitter -VERSION := 1.2.2 +VERSION := 1.3.0 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/fmtm_splitter/__version__.py b/fmtm_splitter/__version__.py index bc86c94..67bc602 100644 --- a/fmtm_splitter/__version__.py +++ b/fmtm_splitter/__version__.py @@ -1 +1 @@ -__version__ = "1.2.2" +__version__ = "1.3.0" diff --git a/pyproject.toml b/pyproject.toml index 559809b..0002953 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ pythonpath = "fmtm_splitter" [tool.commitizen] name = "cz_conventional_commits" -version = "1.2.2" +version = "1.3.0" version_files = [ "pyproject.toml:version", "fmtm_splitter/__version__.py",