From f387759ceee23850aa445d547cd4643ce26cbbf4 Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Tue, 6 May 2014 14:05:27 -0400 Subject: [PATCH] Bump version number to 1.7.2 --- docs/conf.py | 2 +- flask_security/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 93103c4..e20f941 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -49,7 +49,7 @@ copyright = u'2012, Matt Wright' # built documents. # # The short X.Y version. -version = '1.7.1' +version = '1.7.2' # The full version, including alpha/beta/rc tags. release = version diff --git a/flask_security/__init__.py b/flask_security/__init__.py index 514587b..21c35ee 100644 --- a/flask_security/__init__.py +++ b/flask_security/__init__.py @@ -10,7 +10,7 @@ :license: MIT, see LICENSE for more details. """ -__version__ = '1.7.1' +__version__ = '1.7.2' from .core import Security, RoleMixin, UserMixin, AnonymousUser, current_user from .datastore import SQLAlchemyUserDatastore, MongoEngineUserDatastore, PeeweeUserDatastore diff --git a/setup.py b/setup.py index e341d62..939fed2 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ class PyTest(TestCommand): setup( name='Flask-Security', - version='1.7.1', + version='1.7.2', url='https://github.com/mattupstate/flask-security', license='MIT', author='Matt Wright',