diff --git a/CHANGELOG.md b/CHANGELOG.md index 23ac28ef014..ab0b048ba63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +v9.1.182 (2024-07-10) +------------------------- + * Locations API endpoint should allow searching on the path + * Fix template syncing when channel gives us invalid template data + v9.1.181 (2024-07-10) ------------------------- * Add Template.base_translation diff --git a/pyproject.toml b/pyproject.toml index 7ad0f8eab57..a754c40f77f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "temba" -version = "9.1.181" +version = "9.1.182" description = "Hosted service for visually building interactive messaging applications" authors = ["Nyaruka "] diff --git a/temba/__init__.py b/temba/__init__.py index e93ab3c6511..010a323b97e 100644 --- a/temba/__init__.py +++ b/temba/__init__.py @@ -1,4 +1,4 @@ -__version__ = "9.1.181" +__version__ = "9.1.182" # This will make sure the app is always imported when # Django starts so that shared_task will use this app.