diff --git a/.travis.yml b/.travis.yml index df69606..682e095 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,9 +9,6 @@ install: matrix: include: - - stage: test - python: 3.3 - env: TOX_ENV=py33 - stage: test python: 3.4 env: TOX_ENV=py34 diff --git a/CHANGELOG.rst b/CHANGELOG.rst index db9ae64..4eeec3c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,7 +4,14 @@ Release Notes Here you can see the full list of changes between sqlalchemy-filters versions, where semantic versioning is used: *major.minor.patch*. -Backwards-compatible changes increment the minor version number only. + +Version 0.8.0 +------------- + +Released 2018-06-25 + +* Adds support for `ilike` (case-insensitive) string comparison. + Version 0.7.0 ------------- diff --git a/setup.py b/setup.py index d7da79d..e01931a 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='sqlalchemy-filters', - version='0.7.0', + version='0.8.0', description='A library to filter SQLAlchemy queries.', long_description=readme, author='Student.com', diff --git a/tox.ini b/tox.ini index c39ada2..b91a63f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = {py33,py34,py35,py36} +envlist = {py34,py35,py36} skipdist=True [testenv]