diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d0b9a5fd8..421d4f9c99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +v10.0.3 (2025-01-08) +------------------------- + * Encode email addresses on user lookup + v10.0.2 (2025-01-08) ------------------------- * Add new assignment bar diff --git a/pyproject.toml b/pyproject.toml index b49ecc966c..e6fa3fb066 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "temba" -version = "10.0.2" +version = "10.0.3" description = "Hosted service for visually building interactive messaging applications" authors = ["Nyaruka "] diff --git a/temba/__init__.py b/temba/__init__.py index d2d2127cd5..d3b606de70 100644 --- a/temba/__init__.py +++ b/temba/__init__.py @@ -1,4 +1,4 @@ -__version__ = "10.0.2" +__version__ = "10.0.3" # This will make sure the app is always imported when # Django starts so that shared_task will use this app.