Bumped version, added ArrowType to main module init

This commit is contained in:
Konsta Vesterinen
2013-07-25 14:14:23 +03:00
parent 54dff643da
commit eecdeacecf
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.16.0 (2013-07-25)
^^^^^^^^^^^^^^^^^^^
- Added ArrowType
0.15.1 (2013-07-22) 0.15.1 (2013-07-22)
^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^

View File

@@ -24,7 +24,7 @@ class PyTest(Command):
setup( setup(
name='SQLAlchemy-Utils', name='SQLAlchemy-Utils',
version='0.15.1', version='0.16.0',
url='https://github.com/kvesteri/sqlalchemy-utils', url='https://github.com/kvesteri/sqlalchemy-utils',
license='BSD', license='BSD',
author='Konsta Vesterinen', author='Konsta Vesterinen',

View File

@@ -6,6 +6,7 @@ from .listeners import coercion_listener
from .merge import merge, Merger from .merge import merge, Merger
from .proxy_dict import ProxyDict, proxy_dict from .proxy_dict import ProxyDict, proxy_dict
from .types import ( from .types import (
ArrowType,
ColorType, ColorType,
EmailType, EmailType,
instrumented_list, instrumented_list,
@@ -26,7 +27,7 @@ from .types import (
) )
__version__ = '0.15.1' __version__ = '0.16.0'
__all__ = ( __all__ = (
@@ -40,6 +41,7 @@ __all__ = (
primary_keys, primary_keys,
proxy_dict, proxy_dict,
table_name, table_name,
ArrowType,
ColorType, ColorType,
EmailType, EmailType,
InstrumentedList, InstrumentedList,