From ae4cad6b27cd75fbda72b73129a0175e77baa14a Mon Sep 17 00:00:00 2001 From: Julio Trigo Date: Wed, 6 Mar 2019 20:10:00 +0000 Subject: [PATCH 1/5] Highlight code in documentation --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 90d6ecbfd9a0eaacb427a2096225e7d57ef03082 Mon Sep 17 00:00:00 2001 From: Julio Trigo Date: Wed, 6 Mar 2019 20:20:06 +0000 Subject: [PATCH 2/5] Amend CHANGELOG --- CHANGELOG.rst | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e18deae..d3030db 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,12 +5,31 @@ 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) +* Add reStructuredText linter (#27) +* Fix and improve documentation (#21 thanks to @daviskirk, #28) +* Add ``MANIFEST.in`` file (#27) +* Tox improvements (#27) +* Travis CI: use docker, ``xenial`` distribution and Python 3.7 (#28) +* Improve PyPI classifiers (#25) + + 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 From 523f32d8fbd54a8bf792e122f0e090267b8149dd Mon Sep 17 00:00:00 2001 From: Julio Trigo Date: Wed, 6 Mar 2019 20:27:51 +0000 Subject: [PATCH 3/5] Bump up dev requirement version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index aaa7e65..d717fdc 100644 --- a/setup.py +++ b/setup.py @@ -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', From 9fc7ef7708e93238a73b1b16ba3cada3ea6f9070 Mon Sep 17 00:00:00 2001 From: Julio Trigo Date: Wed, 6 Mar 2019 20:35:18 +0000 Subject: [PATCH 4/5] Bump up version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d717fdc..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', From 89f368161fc87299be27e823ff4dcdc3a2325818 Mon Sep 17 00:00:00 2001 From: Julio Trigo Date: Thu, 7 Mar 2019 11:34:14 +0000 Subject: [PATCH 5/5] Trim some of the items in the release notes --- CHANGELOG.rst | 5 ----- 1 file changed, 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d3030db..45d7647 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,12 +14,7 @@ Released 2019-03-07 addresses #18 thanks to @itdependsnetworks) * Add support for Python 3.7 (#25) * Add support (tests) for PostgreSQL (#28) -* Add reStructuredText linter (#27) * Fix and improve documentation (#21 thanks to @daviskirk, #28) -* Add ``MANIFEST.in`` file (#27) -* Tox improvements (#27) -* Travis CI: use docker, ``xenial`` distribution and Python 3.7 (#28) -* Improve PyPI classifiers (#25) Version 0.8.0