From 4569b605d2402eed75bcf15e100dad9e01462c67 Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Sat, 12 Dec 2020 21:47:38 -0500 Subject: [PATCH] 0.5.1 release --- CHANGES.rst | 18 ++++++++++++++++++ openwisp_users/__init__.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 4ce4cae8..19fcf82c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,24 @@ Changelog ========= +Version 0.5.1 [2020-12-13] +-------------------------- + +Changes +~~~~~~~ + +- Updated django-allauth to 0.44.x +- Copied the template ``account/login.html`` from django-allauth + in order to remove the sign up link, which we do not support +- Updated django-extensions to 3.1 + +Bugfixes +~~~~~~~~ + +- Updating django-allauth to 0.44.x also fixes an `issue affecting + OpenWISP Users in production deployment (experienced in ansible-openwisp2) + `_ + Version 0.5.0 [2020-11-18] -------------------------- diff --git a/openwisp_users/__init__.py b/openwisp_users/__init__.py index 2c8aee86..7f7f021b 100644 --- a/openwisp_users/__init__.py +++ b/openwisp_users/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 5, 0, 'final') +VERSION = (0, 5, 1, 'final') __version__ = VERSION # alias default_app_config = 'openwisp_users.apps.OpenwispUsersConfig'