diff --git a/HISTORY.rst b/HISTORY.rst index 405c860..ff288b9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,6 +6,15 @@ History .. towncrier release notes start +1.3.2 (2025-01-22) +================== + +Bugfixes +-------- + +- Add missing due_date to Issue allowed_params (#196) + + 1.3.1 (2025-01-13) ================== diff --git a/changes/196.bugfix b/changes/196.bugfix deleted file mode 100644 index 1fbe6b0..0000000 --- a/changes/196.bugfix +++ /dev/null @@ -1 +0,0 @@ -Add missing due_date to Issue allowed_params diff --git a/pyproject.toml b/pyproject.toml index 05e966d..2f9b63d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -53,7 +53,7 @@ commit = true message = "Release {new_version}" commit_args = "--no-verify" tag = false -current_version = "1.3.2.dev1" +current_version = "1.3.2" parse = """(?x) (?P[0-9]+) \\.(?P[0-9]+) diff --git a/taiga/__init__.py b/taiga/__init__.py index d796555..5ca1b0d 100644 --- a/taiga/__init__.py +++ b/taiga/__init__.py @@ -5,7 +5,7 @@ """ Taiga Python API library """ -__version__ = "1.3.2.dev1" +__version__ = "1.3.2" __author__ = "Nephila" __license__ = "MIT" __all__ = ["TaigaAPI"]