Bumped version, added furl to extra requirements

This commit is contained in:
Konsta Vesterinen
2013-10-23 08:45:08 +03:00
parent 92be4bb6f2
commit 00395f8702
3 changed files with 10 additions and 3 deletions

View File

@@ -4,6 +4,12 @@ Changelog
Here you can see the full list of changes between each SQLAlchemy-Utils release. Here you can see the full list of changes between each SQLAlchemy-Utils release.
0.17.0 (2013-10-23)
^^^^^^^^^^^^^^^^^^^
- Added URLType
0.16.25 (2013-10-18) 0.16.25 (2013-10-18)
^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^

View File

@@ -44,7 +44,8 @@ extras_require = {
'password': ['passlib >= 1.6, < 2.0'], 'password': ['passlib >= 1.6, < 2.0'],
'color': ['colour>=0.0.4'], 'color': ['colour>=0.0.4'],
'ipaddress': ['ipaddr'] if not PY3 else [], 'ipaddress': ['ipaddr'] if not PY3 else [],
'timezone': ['python-dateutil'] 'timezone': ['python-dateutil'],
'url': ['furl >= 0.3.5']
} }
@@ -56,7 +57,7 @@ for name, requirements in extras_require.items():
setup( setup(
name='SQLAlchemy-Utils', name='SQLAlchemy-Utils',
version='0.16.25', version='0.17.0',
url='https://github.com/kvesteri/sqlalchemy-utils', url='https://github.com/kvesteri/sqlalchemy-utils',
license='BSD', license='BSD',
author='Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen', author='Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen',

View File

@@ -38,7 +38,7 @@ from .types import (
) )
__version__ = '0.16.25' __version__ = '0.17.0'
__all__ = ( __all__ = (