diff --git a/CHANGELOG.md b/CHANGELOG.md index d1a24d4cdbd..f6a293afa5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +v9.3.43 (2024-09-19) +------------------------- + * Add support broadcast status (C)COMPLETED + * Remove broadcasts from Outbox now that they have their own page + * Put starts before webhooks on flow history menu + v9.3.42 (2024-09-18) ------------------------- * Cleanup how we read and anonymize channel logs diff --git a/pyproject.toml b/pyproject.toml index d01e31389f8..efb37c79b4f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "temba" -version = "9.3.42" +version = "9.3.43" description = "Hosted service for visually building interactive messaging applications" authors = ["Nyaruka "] diff --git a/temba/__init__.py b/temba/__init__.py index 710a93b98f4..8ba2301de3d 100644 --- a/temba/__init__.py +++ b/temba/__init__.py @@ -1,4 +1,4 @@ -__version__ = "9.3.42" +__version__ = "9.3.43" # This will make sure the app is always imported when # Django starts so that shared_task will use this app.