Skip to content

Commit

Permalink
Merge pull request #29 from juliotrigo/v0.9.0
Browse files Browse the repository at this point in the history
v0.9.0
  • Loading branch information
juliotrigo authored Mar 7, 2019
2 parents 12333bb + 89f3681 commit 1b01291
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ This is because a joined eager load does not add the joined model to the
original query, as explained
`here <http://docs.sqlalchemy.org/en/latest/orm/loading_relationships.html#the-zen-of-joined-eager-loading>`_
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
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down

0 comments on commit 1b01291

Please sign in to comment.