Bumped version, added aggregated_attr to main module import
This commit is contained in:
@@ -4,6 +4,12 @@ Changelog
|
||||
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)
|
||||
^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
2
setup.py
2
setup.py
@@ -59,7 +59,7 @@ for name, requirements in extras_require.items():
|
||||
|
||||
setup(
|
||||
name='SQLAlchemy-Utils',
|
||||
version='0.20.0',
|
||||
version='0.21.0',
|
||||
url='https://github.com/kvesteri/sqlalchemy-utils',
|
||||
license='BSD',
|
||||
author='Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen',
|
||||
|
@@ -1,3 +1,4 @@
|
||||
from .aggregates import aggregated_attr
|
||||
from .decorators import generates
|
||||
from .exceptions import ImproperlyConfigured
|
||||
from .functions import (
|
||||
@@ -50,10 +51,11 @@ from .types import (
|
||||
)
|
||||
|
||||
|
||||
__version__ = '0.20.0'
|
||||
__version__ = '0.21.0'
|
||||
|
||||
|
||||
__all__ = (
|
||||
aggregated_attr,
|
||||
batch_fetch,
|
||||
coercion_listener,
|
||||
defer_except,
|
||||
|
Reference in New Issue
Block a user