From 45df7fb54d6471ce520313310ef5386576fe0db4 Mon Sep 17 00:00:00 2001 From: Rowan Seymour Date: Thu, 16 May 2024 14:07:04 -0500 Subject: [PATCH] Update CHANGELOG.md for v5.0.2 --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- smartmin/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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"