diff --git a/CHANGES.rst b/CHANGES.rst index 16c8a53..d6d8dbc 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.16.1 (2013-08-01) +^^^^^^^^^^^^^^^^^^^ + +- Added tsvector_concat and tsvector_match sql function expressions + + 0.16.0 (2013-07-25) ^^^^^^^^^^^^^^^^^^^ diff --git a/setup.py b/setup.py index 52162df..6d839fc 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ for name, requirements in extras_require.items(): setup( name='SQLAlchemy-Utils', - version='0.16.0', + version='0.16.1', url='https://github.com/kvesteri/sqlalchemy-utils', license='BSD', author='Konsta Vesterinen', diff --git a/sqlalchemy_utils/__init__.py b/sqlalchemy_utils/__init__.py index 2546800..ed27e63 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -29,7 +29,7 @@ from .types import ( ) -__version__ = '0.16.0' +__version__ = '0.16.1' __all__ = ( diff --git a/sqlalchemy_utils/expressions.py b/sqlalchemy_utils/expressions.py index 381f7e3..f348f22 100644 --- a/sqlalchemy_utils/expressions.py +++ b/sqlalchemy_utils/expressions.py @@ -14,7 +14,7 @@ def compile_tsvector_match(element, compiler, **kw): args = list(element.clauses) if len(args) < 2: raise Exception( - "Function 'match_tsvector' expects atleast two arguments." + "Function 'tsvector_match' expects atleast two arguments." ) if len(args) == 2: return '(%s) @@ to_tsquery(%s)' % (