diff --git a/CHANGELOG.md b/CHANGELOG.md index a2489f9..1678e5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## 0.2.6 (2024-01-18) + +### Fix + +- invalid tag json parsing PR (#20) + ## 0.2.5 (2023-12-16) ### Fix diff --git a/Makefile b/Makefile index e8c6305..a54349f 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := fmtm-splitter -VERSION := 0.2.5 +VERSION := 0.2.6 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/fmtm_splitter/__version__.py b/fmtm_splitter/__version__.py index fe404ae..01ef120 100644 --- a/fmtm_splitter/__version__.py +++ b/fmtm_splitter/__version__.py @@ -1 +1 @@ -__version__ = "0.2.5" +__version__ = "0.2.6" diff --git a/pyproject.toml b/pyproject.toml index 4331f07..1a65778 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,7 @@ pythonpath = "fmtm_splitter" [tool.commitizen] name = "cz_conventional_commits" -version = "0.2.5" +version = "0.2.6" version_files = [ "pyproject.toml:version", "fmtm_splitter/__version__.py",