From f96feaffa1e6356215bf1503cc560fee3d9af88c Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Thu, 11 Oct 2012 17:34:32 -0400 Subject: [PATCH] Bump version number to 1.5.0 --- 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 4432360..eddc555 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.3.0-dev' +version = '1.5.0' # The full version, including alpha/beta/rc tags. release = version diff --git a/flask_security/__init__.py b/flask_security/__init__.py index 756d89a..f9a3b2c 100644 --- a/flask_security/__init__.py +++ b/flask_security/__init__.py @@ -10,7 +10,7 @@ :license: MIT, see LICENSE for more details. """ -__version__ = '1.3.0-dev' +__version__ = '1.5.0' from .core import Security, RoleMixin, UserMixin, AnonymousUser, current_user from .datastore import SQLAlchemyUserDatastore, MongoEngineUserDatastore diff --git a/setup.py b/setup.py index ae2636b..6aed9ac 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ from setuptools import setup setup( name='Flask-Security', - version='1.5.0-dev', + version='1.5.0', url='https://github.com/mattupstate/flask-security', license='MIT', author='Matt Wright',