diff --git a/AUTHORS.rst b/AUTHORS.rst index e21bedc..34d2059 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -12,3 +12,6 @@ Contributors * João Neto - https://github.com/netjinho * Jorik Kraaikamp - https://github.com/JostCrow * Håken Lid - https://github.com/haakenlid +* Ryan O’Hara - https://github.com/ryan-copperleaf +* webrunners - https://github.com/webrunners + diff --git a/HISTORY.rst b/HISTORY.rst index bd93ca1..be93592 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,16 @@ History ------- +0.3.5 (2018-02-27) +~~~~~~~~~~~~~~~~~~ + +* Django 2 support. +* Using `tox-travis `_ for travis builds. +* Fixed negated queries in Django backend. + Previously negation did ``NOT (condition1 and condition2)`` vs expected + ``NOT condition1 and NOT condition2``. + See `#53 `_. + 0.3.4 (2017-08-17) ~~~~~~~~~~~~~~~~~~ diff --git a/url_filter/__init__.py b/url_filter/__init__.py index 5bab113..af2cafa 100644 --- a/url_filter/__init__.py +++ b/url_filter/__init__.py @@ -4,4 +4,4 @@ __author__ = 'Miroslav Shubernetskiy' __email__ = 'miroslav@miki725.com' -__version__ = '0.3.4' +__version__ = '0.3.5'