diff --git a/CHANGELOG.md b/CHANGELOG.md index 893395f..7ef214e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## 0.2.4 (2023-12-07) + +### Fix + +- run drop_all for tables prior to create_all (if exist) +- split_by_sql if no data extract provided + ## 0.2.3 (2023-12-06) ### Fix diff --git a/Makefile b/Makefile index 25983c7..75e3b02 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := fmtm-splitter -VERSION := 0.2.3 +VERSION := 0.2.4 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/fmtm_splitter/__version__.py b/fmtm_splitter/__version__.py index d31c31e..788da1f 100644 --- a/fmtm_splitter/__version__.py +++ b/fmtm_splitter/__version__.py @@ -1 +1 @@ -__version__ = "0.2.3" +__version__ = "0.2.4" diff --git a/pyproject.toml b/pyproject.toml index ed5ad8f..f6a81d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,7 @@ pythonpath = "fmtm_splitter" [tool.commitizen] name = "cz_conventional_commits" -version = "0.2.3" +version = "0.2.4" version_files = [ "pyproject.toml:version", "fmtm_splitter/__version__.py",