From 7b474efd7a041f94bb86d23366f50715d7967e40 Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Tue, 10 Jun 2014 13:05:24 -0400 Subject: [PATCH] Bump version number to 1.7.3 --- 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 e20f941..b4de3fb 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.2' +version = '1.7.3' # The full version, including alpha/beta/rc tags. release = version diff --git a/flask_security/__init__.py b/flask_security/__init__.py index 21c35ee..3c9250a 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.2' +__version__ = '1.7.3' from .core import Security, RoleMixin, UserMixin, AnonymousUser, current_user from .datastore import SQLAlchemyUserDatastore, MongoEngineUserDatastore, PeeweeUserDatastore diff --git a/setup.py b/setup.py index 939fed2..433da00 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ class PyTest(TestCommand): setup( name='Flask-Security', - version='1.7.2', + version='1.7.3', url='https://github.com/mattupstate/flask-security', license='MIT', author='Matt Wright',