diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fefcac7965..3a8bc4a70ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +v9.3.104 (2024-11-12) +------------------------- + * Revert change to disallow API posts from staff users + v9.3.103 (2024-11-12) ------------------------- * Only allow GET requests to API by servicing staff members diff --git a/pyproject.toml b/pyproject.toml index de79a85b3c2..b3170eecf8c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "temba" -version = "9.3.103" +version = "9.3.104" description = "Hosted service for visually building interactive messaging applications" authors = ["Nyaruka "] diff --git a/temba/__init__.py b/temba/__init__.py index f2b5a172858..93dfe07b73f 100644 --- a/temba/__init__.py +++ b/temba/__init__.py @@ -1,4 +1,4 @@ -__version__ = "9.3.103" +__version__ = "9.3.104" # This will make sure the app is always imported when # Django starts so that shared_task will use this app.