From bee5f1cbe9eba2b7c750fccdf82c3f461771a2a8 Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Wed, 15 Aug 2012 15:36:47 -0400 Subject: [PATCH] Update version number --- docs/conf.py | 5 ++--- flask_security/__init__.py | 2 ++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 17cae5d..6bc7776 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,7 +18,6 @@ import sys, os # documentation root, use os.path.abspath to make it absolute, like shown here. sys.path.insert(0, os.path.abspath('..')) sys.path.append(os.path.abspath('_themes')) -#from setup import __version__ # -- General configuration ----------------------------------------------------- @@ -50,7 +49,7 @@ copyright = u'2012, Matt Wright' # built documents. # # The short X.Y version. -version = '1.2.1' +version = '1.3.0-dev' # The full version, including alpha/beta/rc tags. release = version @@ -99,7 +98,7 @@ html_theme = 'flask_small' # further. For a list of options available for each theme, see the # documentation. html_theme_options = { - 'github_fork': 'mattupstate/flask-security', + 'github_fork': 'mattupstate/flask-security', 'index_logo': False } diff --git a/flask_security/__init__.py b/flask_security/__init__.py index 31858b0..2abe3a2 100644 --- a/flask_security/__init__.py +++ b/flask_security/__init__.py @@ -10,6 +10,8 @@ :license: MIT, see LICENSE for more details. """ +__version__ = '1.3.0-dev' + from .core import Security, RoleMixin, UserMixin, AnonymousUser, \ AuthenticationProvider, current_user from .datastore import SQLAlchemyUserDatastore, MongoEngineUserDatastore