From c46cbb952bc67eafaf9fe4202bcda15ba3130687 Mon Sep 17 00:00:00 2001 From: Andrzej Pragacz Date: Sun, 13 Oct 2019 00:36:58 +0200 Subject: [PATCH] Version 0.5.2 Changes: * Resolve issue #77: Allow using DRR without templates setup * Fix issue #79: do not create user when sending verification fails * Fix issue #83: Support change to already existing e-mail in the DB Detect whether user email field is unique. If yes, then send "e-mail already exists" notification instead of verification one. Also, perform a check just before changing the e-mail to avoid integrity errors. * Fix issue #68 Add VERIFICATION_TEMPLATE_CONTEXT_BUILDER settings key * Fix invalid config in README --- rest_registration/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_registration/__init__.py b/rest_registration/__init__.py index 76391c8..7bc74c9 100644 --- a/rest_registration/__init__.py +++ b/rest_registration/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.5.1" +__version__ = "0.5.2" default_app_config = 'rest_registration.apps.RestRegistrationConfig'