From 0a841269ce70ca38819f894b83a1b31d90ab7c89 Mon Sep 17 00:00:00 2001 From: Ling Thio Date: Sun, 12 Jul 2015 21:24:13 -0700 Subject: [PATCH] v0.6.3 --- docs/source/index.rst | 2 ++ flask_user/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/source/index.rst b/docs/source/index.rst index 03843b5c..67191843 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -117,6 +117,7 @@ Documentation Revision History ---------------- +* v0.6.3 Fix for Python 3.4 and signals * v0.6.2 Added support for invitation-only registrations. * v0.6.1 Added Chinese (Simplified) and French translations`. * v0.6 Changed User/UserProfile DataModels into UserAuth/User DataModels. @@ -221,6 +222,7 @@ This project would not be possible without the use of the following amazing offe Contributors ------------ +- https://github.com/neurosnap : Register by invitation only - https://github.com/lilac : Chinese translation - https://github.com/cranberyxl : Bugfix for login_endpoint & macros.label - https://github.com/markosys : Early testing and feedback diff --git a/flask_user/__init__.py b/flask_user/__init__.py index 7749cbcf..349f08bd 100644 --- a/flask_user/__init__.py +++ b/flask_user/__init__.py @@ -26,7 +26,7 @@ # Enable the following: from flask.ext.user import user_logged_in from .signals import * -__version__ = '0.6.2' +__version__ = '0.6.3' def _flask_user_context_processor(): """ Make 'user_manager' available to Jinja2 templates""" diff --git a/setup.py b/setup.py index 5a56c840..0c859859 100644 --- a/setup.py +++ b/setup.py @@ -86,8 +86,8 @@ from setuptools import setup setup( - name='Flask-User', - version='0.6.2', + name='Flask-User-06', + version='0.6.3', url='http://github.com/lingthio/Flask-User', license='BSD License', author='Ling Thio',