From aad042d7ad759709dfe2af71b5c77dc07be4541f Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Thu, 11 Oct 2012 17:11:48 -0400 Subject: [PATCH] Update changelog and install dependencies --- CHANGES | 9 +++++++++ setup.py | 16 ++++++++-------- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/CHANGES b/CHANGES index 4226020..34d405f 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,15 @@ Flask-Security Changelog Here you can see the full list of changes between each Flask-Security release. +Version 1.5.0 +------------- + +Released October 11th 2012 + +- Major release. Upgrading from previous versions will require a bit of work to + accomodate API changes. See documentation for a list of new features and for + help on how to upgrade. + Version 1.2.3 ------------- diff --git a/setup.py b/setup.py index 6c423a4..ae2636b 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ from setuptools import setup setup( name='Flask-Security', - version='1.3.0-dev', + version='1.5.0-dev', url='https://github.com/mattupstate/flask-security', license='MIT', author='Matt Wright', @@ -34,13 +34,13 @@ setup( include_package_data=True, platforms='any', install_requires=[ - 'Flask>=0.9', - 'Flask-Login>=0.1.3', - 'Flask-Mail>=0.7.0', - 'Flask-Principal>=0.3', - 'Flask-WTF>=0.5.4', - 'itsdangerous>=0.15', - 'passlib>=1.5.3', + 'Flask>=0.8', + 'Flask-Login==0.1.3', + 'Flask-Mail==0.7.3', + 'Flask-Principal==0.3.3', + 'Flask-WTF==0.8', + 'itsdangerous==0.17', + 'passlib==1.6.1', ], test_suite='nose.collector', tests_require=[