diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e18deae..45d7647 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,12 +5,26 @@ Here you can see the full list of changes between sqlalchemy-filters versions, where semantic versioning is used: *major.minor.patch*. +Version 0.9.0 +------------- + +Released 2019-03-07 + +* Add compatibility (no official support) with Python 2.7 (#23 which + addresses #18 thanks to @itdependsnetworks) +* Add support for Python 3.7 (#25) +* Add support (tests) for PostgreSQL (#28) +* Fix and improve documentation (#21 thanks to @daviskirk, #28) + + Version 0.8.0 ------------- Released 2018-06-25 -* Adds support for ``ilike`` (case-insensitive) string comparison. +* Adds support for ``ilike`` (case-insensitive) string comparison (#19 + thanks to @rockwelln) +* Drop support for Python 3.3 (#20) Version 0.7.0 diff --git a/README.rst b/README.rst index 3972e6a..7f01159 100644 --- a/README.rst +++ b/README.rst @@ -176,7 +176,7 @@ This is because a joined eager load does not add the joined model to the original query, as explained `here `_ -The following would not prevent all columns from Bar being eagerly +The following would not prevent all columns from ``Bar`` being eagerly loaded: .. code-block:: python diff --git a/setup.py b/setup.py index aaa7e65..f3b8142 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='sqlalchemy-filters', - version='0.8.0', + version='0.9.0', description='A library to filter SQLAlchemy queries.', long_description=readme, author='Student.com', @@ -26,7 +26,7 @@ extras_require={ 'dev': [ 'pytest==4.3.0', - 'flake8==3.7.6', + 'flake8==3.7.7', 'coverage==4.5.2', 'sqlalchemy-utils==0.33.11', 'restructuredtext-lint==1.2.2',