diff --git a/CHANGELOG.md b/CHANGELOG.md index 80a7991..8a8aba0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## 1.1.1 (2024-02-11) + +### Fix + +- allow for automatic data extract generation +- more flexible parsing of aoi for split_by_sql + ## 1.1.0 (2024-02-08) ### Feat diff --git a/Makefile b/Makefile index af42ceb..a084e94 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := fmtm-splitter -VERSION := 1.1.0 +VERSION := 1.1.1 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/fmtm_splitter/__version__.py b/fmtm_splitter/__version__.py index 6849410..a82b376 100644 --- a/fmtm_splitter/__version__.py +++ b/fmtm_splitter/__version__.py @@ -1 +1 @@ -__version__ = "1.1.0" +__version__ = "1.1.1" diff --git a/pyproject.toml b/pyproject.toml index d1b7bc1..d3a6b88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ pythonpath = "fmtm_splitter" [tool.commitizen] name = "cz_conventional_commits" -version = "1.1.0" +version = "1.1.1" version_files = [ "pyproject.toml:version", "fmtm_splitter/__version__.py",