Bumped version, added aggregated_attr to main module import

This commit is contained in:
Konsta Vesterinen
2013-11-11 10:23:21 +02:00
parent 50bcba3be1
commit 19dc87e8ef
3 changed files with 10 additions and 2 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.21.0 (2013-11-11)
^^^^^^^^^^^^^^^^^^^
- Added support for cached aggregates
0.20.0 (2013-10-24) 0.20.0 (2013-10-24)
^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^

View File

@@ -59,7 +59,7 @@ for name, requirements in extras_require.items():
setup( setup(
name='SQLAlchemy-Utils', name='SQLAlchemy-Utils',
version='0.20.0', version='0.21.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

@@ -1,3 +1,4 @@
from .aggregates import aggregated_attr
from .decorators import generates from .decorators import generates
from .exceptions import ImproperlyConfigured from .exceptions import ImproperlyConfigured
from .functions import ( from .functions import (
@@ -50,10 +51,11 @@ from .types import (
) )
__version__ = '0.20.0' __version__ = '0.21.0'
__all__ = ( __all__ = (
aggregated_attr,
batch_fetch, batch_fetch,
coercion_listener, coercion_listener,
defer_except, defer_except,