From 796a86f72c8bcc24fa021090fb85c50fa0d6ce35 Mon Sep 17 00:00:00 2001 From: jwag956 Date: Sun, 28 Apr 2019 11:51:54 -0700 Subject: [PATCH] prepare for 3.02 --- CHANGES | 7 ++++++- LICENSE | 24 ++++++++++++------------ docs/conf.py | 2 +- flask_security/__init__.py | 2 +- 4 files changed, 20 insertions(+), 15 deletions(-) diff --git a/CHANGES b/CHANGES index 52a03bd9..e642fda1 100644 --- a/CHANGES +++ b/CHANGES @@ -3,10 +3,15 @@ Flask-Security Changelog Here you can see the full list of changes between each Flask-Security release. +Version 3.0.2 +------------- + +Released TBD + Version 3.0.1 -------------- -Released TBD +Released April 28th 2019 - Support 3.7 as part of CI - Rebrand to this forked repo diff --git a/LICENSE b/LICENSE index 2b1a4f0b..da38cb96 100644 --- a/LICENSE +++ b/LICENSE @@ -1,20 +1,20 @@ MIT License -Copyright (C) 2012 by Matthew Wright +Copyright (C) 2012-2019 by Matthew Wright -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/docs/conf.py b/docs/conf.py index 87604b62..767f5763 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ # built documents. # # The short X.Y version. -version = '3.0.1' +version = '3.0.2' # The full version, including alpha/beta/rc tags. release = version diff --git a/flask_security/__init__.py b/flask_security/__init__.py index 09fd9330..c568ed67 100644 --- a/flask_security/__init__.py +++ b/flask_security/__init__.py @@ -21,7 +21,7 @@ reset_password_instructions_sent, user_confirmed, user_registered from .utils import login_user, logout_user, url_for_security -__version__ = '3.0.1' +__version__ = '3.0.2rc1' __all__ = ( 'AnonymousUser', 'ConfirmRegisterForm',