From 99ac732d10d29222e93003e5435a093657a7dd85 Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Thu, 4 Apr 2013 10:24:03 -0400 Subject: [PATCH] Bump version number to 1.6.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 ea12d54..53655d8 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.6.1' +version = '1.6.2' # The full version, including alpha/beta/rc tags. release = version diff --git a/flask_security/__init__.py b/flask_security/__init__.py index 428204d..89b5bbf 100644 --- a/flask_security/__init__.py +++ b/flask_security/__init__.py @@ -10,7 +10,7 @@ :license: MIT, see LICENSE for more details. """ -__version__ = '1.6.1' +__version__ = '1.6.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 76acbe7..3b3c259 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ from setuptools import setup setup( name='Flask-Security', - version='1.6.1', + version='1.6.2', url='https://github.com/mattupstate/flask-security', license='MIT', author='Matt Wright',