diff --git a/CHANGELOG.md b/CHANGELOG.md index dfe67688..16154f17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## v3.2.3 (2024-03-28) + +- Improves the logic of finding and creating config files. +- Fixes a bug where config files in XDG_CONFIG_HOME are not found (#371). +- Fixes a bug in the `relative_path` parameter crashing on actions after moving files (#372). + ## v3.2.2 (2024-03-04) - Fixes an problem where the `organize new` command fails to create a new config file. diff --git a/organize/__version__.py b/organize/__version__.py index 1e3bed4c..3348d7f9 100644 --- a/organize/__version__.py +++ b/organize/__version__.py @@ -1 +1 @@ -__version__ = "3.2.2" +__version__ = "3.2.3" diff --git a/pyproject.toml b/pyproject.toml index 6a1e623d..889d9156 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "organize-tool" -version = "3.2.2" +version = "3.2.3" description = "The file management automation tool" packages = [{ include = "organize" }] authors = ["Thomas Feldmann "]