From 6d42789cb2abb3c1e3f6e6cb03acaa9bc1541148 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Mon, 17 Mar 2025 23:51:33 +0100 Subject: [PATCH] fix api version (#9331) --- pyproject.toml | 1 + src/backend/InvenTree/InvenTree/api_version.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1ed7190149..cc3b7f42ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,6 +55,7 @@ ignore = [ "D417", # - RUF032 - decimal-from-float-literal "RUF032", + "RUF045", # TODO These should be followed up and fixed # - B904 Within an `except` clause, raise exceptions diff --git a/src/backend/InvenTree/InvenTree/api_version.py b/src/backend/InvenTree/InvenTree/api_version.py index c023dc74c0..24a13aaa6e 100644 --- a/src/backend/InvenTree/InvenTree/api_version.py +++ b/src/backend/InvenTree/InvenTree/api_version.py @@ -8,7 +8,7 @@ INVENTREE_API_VERSION = 325 INVENTREE_API_TEXT = """ -v324 - 2024-03-17 : https://github.com/inventree/InvenTree/pull/9244 +v325 - 2024-03-17 : https://github.com/inventree/InvenTree/pull/9244 - Adds the option for superusers to list all user tokens - Make list endpoints sortable, filterable and searchable