From f9605ad1a74d3e49f6f81119ebce8b5cbe4e6d88 Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Wed, 15 Mar 2017 19:02:39 +0100 Subject: [PATCH] 0.1.3 release --- CHANGES.rst | 11 +++++++++-- openwisp_users/__init__.py | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 062db412..d7888a45 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,17 @@ Changelog ========= -Version 0.1.3 [unreleased] +Version 0.1.3 [2017-03-15] -------------------------- -WIP +- `f9056e9 `_: + [admin] Always require email +- `c21c782 `_: + [mixins] Fixed bugged org pk comparison in ``_validate_org_relation`` +- `763c261 `_: + [accounts] Added back frontend logout url +- `b93de81 `_: + [admin] Added back site model Version 0.1.2 [2017-03-10] -------------------------- diff --git a/openwisp_users/__init__.py b/openwisp_users/__init__.py index ce79a772..90d8b8ba 100644 --- a/openwisp_users/__init__.py +++ b/openwisp_users/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 1, 3, 'alpha') +VERSION = (0, 1, 3, 'final') __version__ = VERSION # alias default_app_config = 'openwisp_users.apps.OpenwispUsersConfig'