diff --git a/CHANGELOG.md b/CHANGELOG.md index d7e5d6fe..eba485b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## v3.3.0 (2024-11-25) + - Added a new conflict mode `deduplicate` which skips duplicate files and renames non-duplicates (thanks @TheExistingOne). - The `exif` filter now supports extracting metadata from non-image files such as EPUB diff --git a/organize/__version__.py b/organize/__version__.py index 67fc7e83..88c513ea 100644 --- a/organize/__version__.py +++ b/organize/__version__.py @@ -1 +1 @@ -__version__ = "3.2.5" +__version__ = "3.3.0" diff --git a/pyproject.toml b/pyproject.toml index e81a92bf..d749fc9b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "organize-tool" -version = "3.2.5" +version = "3.3.0" description = "The file management automation tool" packages = [{ include = "organize" }] authors = ["Thomas Feldmann "]