From 3f6350749192b44ad89c47d10f1ec44655d1ef7f Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Thu, 8 Oct 2020 14:43:15 -0500 Subject: [PATCH] 0.4.1 release --- CHANGES.rst | 10 ++++++++-- openwisp_users/__init__.py | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 36af11ec..2becd0ef 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,16 @@ Changelog ========= -Version 0.4.1 [unreleased] +Version 0.4.1 [2020-10-08] -------------------------- -WIP +- [chores] Allow passing a string or uuid to the + `Organization membership helpers `_ +- [fix] The ``OrganizationUser`` instance of an ``OrganizationOwner`` + won't be allowed to be ``is_admin=False`` +- [fix] Fixed mutable class attribute in MultitenantAdminMixin +- [fix] Fixed exception when deleting ``OrganizationUser`` of an owner +- [fix] Fixed typographical error in organization name Version 0.4.0 [2020-08-23] -------------------------- diff --git a/openwisp_users/__init__.py b/openwisp_users/__init__.py index 53ae8075..05d9fe5c 100644 --- a/openwisp_users/__init__.py +++ b/openwisp_users/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 4, 1, 'alpha') +VERSION = (0, 4, 1, 'final') __version__ = VERSION # alias default_app_config = 'openwisp_users.apps.OpenwispUsersConfig'