diff --git a/CHANGELOG.md b/CHANGELOG.md index 31e9f6b..5c2a634 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +v5.0.2 (2024-05-16) +------------------------- + * Add SMARTMIN_DEFAULT_MESSAGES setting to allow disabling of automatic messages for create and update views + v5.0.1 (2024-04-17) ------------------------- * Merge pull request #185 from nyaruka/dependabot/pip/sqlparse-0.5.0 diff --git a/pyproject.toml b/pyproject.toml index 11ed49f..96eae5c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "smartmin" -version = "5.0.1" +version = "5.0.2" description = "Scaffolding system for Django object management." authors = ["Nyaruka Ltd "] readme = "README.md" diff --git a/smartmin/__init__.py b/smartmin/__init__.py index adfba64..3e0ce7e 100644 --- a/smartmin/__init__.py +++ b/smartmin/__init__.py @@ -1,3 +1,3 @@ from __future__ import unicode_literals -__version__ = "5.0.1" +__version__ = "5.0.2"