diff --git a/CHANGES.rst b/CHANGES.rst index 03b0980..0f779db 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,12 @@ Changelog 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) ^^^^^^^^^^^^^^^^^^^^ diff --git a/setup.py b/setup.py index 1927c0e..d6b4d1f 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,8 @@ extras_require = { 'password': ['passlib >= 1.6, < 2.0'], 'color': ['colour>=0.0.4'], '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( name='SQLAlchemy-Utils', - version='0.16.25', + version='0.17.0', url='https://github.com/kvesteri/sqlalchemy-utils', license='BSD', author='Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen', diff --git a/sqlalchemy_utils/__init__.py b/sqlalchemy_utils/__init__.py index dd52ba1..4d9b44c 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -38,7 +38,7 @@ from .types import ( ) -__version__ = '0.16.25' +__version__ = '0.17.0' __all__ = (