From 5e49a4e05bcac7a8f121bc8ac3260a34c8d6393d Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Mon, 26 Nov 2012 15:01:54 -0500 Subject: [PATCH] Bump version number to 1.5.1 --- 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 eddc555..917ca2d 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.5.0' +version = '1.5.1' # The full version, including alpha/beta/rc tags. release = version diff --git a/flask_security/__init__.py b/flask_security/__init__.py index 5d9b23f..d1f9212 100644 --- a/flask_security/__init__.py +++ b/flask_security/__init__.py @@ -10,7 +10,7 @@ :license: MIT, see LICENSE for more details. """ -__version__ = '1.5.1-dev' +__version__ = '1.5.1' from .core import Security, RoleMixin, UserMixin, AnonymousUser, current_user from .datastore import SQLAlchemyUserDatastore, MongoEngineUserDatastore diff --git a/setup.py b/setup.py index b59acf2..a433a47 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ from setuptools import setup setup( name='Flask-Security', - version='1.5.1-dev', + version='1.5.1', url='https://github.com/mattupstate/flask-security', license='MIT', author='Matt Wright',