Bumped version, added ArrowType to main module init
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.16.0 (2013-07-25)
|
||||
^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
- Added ArrowType
|
||||
|
||||
|
||||
0.15.1 (2013-07-22)
|
||||
^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
2
setup.py
2
setup.py
@@ -24,7 +24,7 @@ class PyTest(Command):
|
||||
|
||||
setup(
|
||||
name='SQLAlchemy-Utils',
|
||||
version='0.15.1',
|
||||
version='0.16.0',
|
||||
url='https://github.com/kvesteri/sqlalchemy-utils',
|
||||
license='BSD',
|
||||
author='Konsta Vesterinen',
|
||||
|
@@ -6,6 +6,7 @@ from .listeners import coercion_listener
|
||||
from .merge import merge, Merger
|
||||
from .proxy_dict import ProxyDict, proxy_dict
|
||||
from .types import (
|
||||
ArrowType,
|
||||
ColorType,
|
||||
EmailType,
|
||||
instrumented_list,
|
||||
@@ -26,7 +27,7 @@ from .types import (
|
||||
)
|
||||
|
||||
|
||||
__version__ = '0.15.1'
|
||||
__version__ = '0.16.0'
|
||||
|
||||
|
||||
__all__ = (
|
||||
@@ -40,6 +41,7 @@ __all__ = (
|
||||
primary_keys,
|
||||
proxy_dict,
|
||||
table_name,
|
||||
ArrowType,
|
||||
ColorType,
|
||||
EmailType,
|
||||
InstrumentedList,
|
||||
|
Reference in New Issue
Block a user