Bump version

This commit is contained in:
Konsta Vesterinen
2014-12-12 13:03:06 +02:00
parent f8c0a34a2d
commit f16a4dc321
2 changed files with 4 additions and 2 deletions

View File

@@ -4,10 +4,11 @@ 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.27.12 (2014-12-xx) 0.28.0 (2014-12-12)
^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^
- Fixed PhoneNumber string coercion (#93) - Fixed PhoneNumber string coercion (#93)
- Added observes decorator (generates decorator will be deprecated later)
0.27.11 (2014-12-06) 0.27.11 (2014-12-06)

View File

@@ -46,6 +46,7 @@ from .listeners import (
) )
from .generic import generic_relationship from .generic import generic_relationship
from .proxy_dict import ProxyDict, proxy_dict from .proxy_dict import ProxyDict, proxy_dict
from .observer import observes
from .query_chain import QueryChain from .query_chain import QueryChain
from .types import ( from .types import (
ArrowType, ArrowType,
@@ -80,7 +81,7 @@ from .types import (
from .models import Timestamp from .models import Timestamp
__version__ = '0.27.11' __version__ = '0.28.0'
__all__ = ( __all__ = (