diff --git a/CHANGES b/CHANGES index 9bb41346..03d2c7f5 100644 --- a/CHANGES +++ b/CHANGES @@ -5,6 +5,10 @@ Here you can see the full list of changes between each Flask-Login release. Unreleased ---------- +nothing yet + +Version 1.0.0 +------------- - New custom test client: `flask_login.FlaskLoginClient`. You can use this to write clearer automated tests. #431 diff --git a/flask_login/__about__.py b/flask_login/__about__.py index ac63b66e..d14f0cf4 100644 --- a/flask_login/__about__.py +++ b/flask_login/__about__.py @@ -1,7 +1,7 @@ __title__ = 'Flask-Login' __description__ = 'User session management for Flask' __url__ = 'https://github.com/maxcountryman/flask-login' -__version_info__ = ('0', '4', '1') +__version_info__ = ('1', '0', '0') __version__ = '.'.join(__version_info__) __author__ = 'Matthew Frazier' __author_email__ = 'leafstormrush@gmail.com'