From 126e0ea6f04ea5ff276febfd8c3301a5b7380cdc Mon Sep 17 00:00:00 2001 From: Thomas Feldmann Date: Sun, 7 Jul 2024 13:52:39 +0200 Subject: [PATCH] bump version to v3.2.4 --- CHANGELOG.md | 2 ++ organize/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63056cd4..9a8706c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## v3.2.4 (2024-07-07) + - Fixes a bug preventing organize from starting (thanks @feather42). - Fixes a bug where ignoring failing shell commands would not work (thanks @florianklumb). diff --git a/organize/__version__.py b/organize/__version__.py index 3348d7f9..79e4386b 100644 --- a/organize/__version__.py +++ b/organize/__version__.py @@ -1 +1 @@ -__version__ = "3.2.3" +__version__ = "3.2.4" diff --git a/pyproject.toml b/pyproject.toml index 889d9156..410fd4c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "organize-tool" -version = "3.2.3" +version = "3.2.4" description = "The file management automation tool" packages = [{ include = "organize" }] authors = ["Thomas Feldmann "]