diff --git a/RELEASE.rst b/RELEASE.rst index 8ea77e745a..b279ef2b86 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -1,6 +1,14 @@ Release Notes ============= +Version 0.30.4 (Released February 12, 2025) +-------------- + +- Rename auth_user table to users_user (#2016) +- fix for staying under openai limits (#2041) +- Update dependency cryptography to v44.0.1 [SECURITY] (#2042) +- Remove `@lukemorales/query-key-factory`, unblock react-query v5 upgrade (#2040) + Version 0.30.3 (Released February 12, 2025) -------------- diff --git a/main/settings.py b/main/settings.py index 54cca15b44..47f712eaa5 100644 --- a/main/settings.py +++ b/main/settings.py @@ -33,7 +33,7 @@ from main.settings_pluggy import * # noqa: F403 from openapi.settings_spectacular import open_spectacular_settings -VERSION = "0.30.3" +VERSION = "0.30.4" log = logging.getLogger()