From ba628a13b39d8a66dce3e473655442cc2aa532c2 Mon Sep 17 00:00:00 2001 From: Thomas Feldmann Date: Fri, 16 Feb 2024 20:15:20 +0100 Subject: [PATCH] bump version to v3.1.2 --- CHANGELOG.md | 5 +++++ organize/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b394773a..2d5824cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog + ## [Unreleased] +## v3.1.2 (2024-02-16) + +- Fixes a validation error where correctly defined actions were not accepted in Python 3.12.2. + ## v3.1.1 (2024-02-11) - Fixes the `organize show` command which broke in v3.1.0. diff --git a/organize/__version__.py b/organize/__version__.py index d539d50c..911557b8 100644 --- a/organize/__version__.py +++ b/organize/__version__.py @@ -1 +1 @@ -__version__ = "3.1.1" +__version__ = "3.1.2" diff --git a/pyproject.toml b/pyproject.toml index 76198bbc..185e01f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "organize-tool" -version = "3.1.1" +version = "3.1.2" description = "The file management automation tool" packages = [{ include = "organize" }] authors = ["Thomas Feldmann "]