diff --git a/CHANGELOG.md b/CHANGELOG.md index 76e0daaa..efbee40b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## v3.1.0 (2024-02-04) + - Add a new output format `errorsonly` which only shows output if an error occured. - Fixes a bug where messages and paths containing brackets where not printed correctly (#348, thanks @kwbr!) diff --git a/organize/__version__.py b/organize/__version__.py index 05527687..f5f41e56 100644 --- a/organize/__version__.py +++ b/organize/__version__.py @@ -1 +1 @@ -__version__ = "3.0.1" +__version__ = "3.1.0" diff --git a/pyproject.toml b/pyproject.toml index 2ca2d181..f8736ebb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "organize-tool" -version = "3.0.1" +version = "3.1.0" description = "The file management automation tool" packages = [{ include = "organize" }] authors = ["Thomas Feldmann "]