diff --git a/CHANGES.rst b/CHANGES.rst index 9363ee8..b75bd61 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,12 @@ Changelog Here you can see the full list of changes between each SQLAlchemy-Utils release. +0.14.6 (2013-07-22) +^^^^^^^^^^^^^^^^^^^ + +- Fixed UUID import issues + + 0.14.5 (2013-07-22) ^^^^^^^^^^^^^^^^^^^ diff --git a/setup.py b/setup.py index 4cf1f64..c288ed5 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ class PyTest(Command): setup( name='SQLAlchemy-Utils', - version='0.14.5', + version='0.14.6', url='https://github.com/kvesteri/sqlalchemy-utils', license='BSD', author='Konsta Vesterinen', diff --git a/sqlalchemy_utils/types/uuid.py b/sqlalchemy_utils/types/uuid.py index d5d7d7e..71368b7 100644 --- a/sqlalchemy_utils/types/uuid.py +++ b/sqlalchemy_utils/types/uuid.py @@ -1,3 +1,4 @@ +from __future__ import absolute_import import uuid from sqlalchemy import types from sqlalchemy.dialects import postgresql