diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 45d7647..1ae91bc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,14 @@ Here you can see the full list of changes between sqlalchemy-filters versions, where semantic versioning is used: *major.minor.patch*. +Version 0.10.0 +-------------- + +Released 2019-03-13 + +* Add ``nullsfirst`` and ``nullslast`` sorting options (#30) + + Version 0.9.0 ------------- diff --git a/setup.py b/setup.py index 6600c2b..32f3c36 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='sqlalchemy-filters', - version='0.9.0', + version='0.10.0', description='A library to filter SQLAlchemy queries.', long_description=readme, long_description_content_type='text/x-rst', @@ -28,7 +28,7 @@ 'dev': [ 'pytest==4.3.0', 'flake8==3.7.7', - 'coverage==4.5.2', + 'coverage==4.5.3', 'sqlalchemy-utils==0.33.11', 'restructuredtext-lint==1.2.2', 'Pygments==2.3.1',