Skip to content

Commit

Permalink
Added USER_SHOW_USERNAME_OR_EMAIL_DOES_NOT_EXIST setting.
Browse files Browse the repository at this point in the history
  • Loading branch information
lingthio committed Aug 3, 2015
1 parent 1e0a8b3 commit 6b6051d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ Documentation

Revision History
----------------
* v0.6.5 Added USER_SHOW_USERNAME_OR_EMAIL_DOES_NOT_EXIST setting.
* v0.6.4 Moved custom params from __init__() to init_app(). Added send_reset_password_email().
* v0.6.3 Fix for Python 3.4 and signals. Added UserMixin.has_role() and @roles_accepted().
* v0.6.2 Added support for invitation-only registrations.
Expand Down
2 changes: 1 addition & 1 deletion flask_user/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# Enable the following: from flask.ext.user import user_logged_in
from .signals import *

__version__ = '0.6.4'
__version__ = '0.6.5'

def _flask_user_context_processor():
""" Make 'user_manager' available to Jinja2 templates"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@

setup(
name='Flask-User',
version='0.6.4',
version='0.6.5',
url='http://github.com/lingthio/Flask-User',
license='BSD License',
author='Ling Thio',
Expand Down

0 comments on commit 6b6051d

Please sign in to comment.