Update changelog and install dependencies

This commit is contained in:
Matt Wright
2012-10-11 17:11:48 -04:00
parent 0154cce46c
commit aad042d7ad
2 changed files with 17 additions and 8 deletions
+9
View File
@@ -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
-------------
+8 -8
View File
@@ -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=[