Skip to content

Commit d320032

Browse files
prepare 0.9
1 parent 5857b2a commit d320032

File tree

7 files changed

+734
-748
lines changed

7 files changed

+734
-748
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,14 @@ are used for versioning (schema follows below):
1515
0.3.4 to 0.4).
1616
- All backwards incompatible changes are mentioned in this document.
1717

18-
0.8.5
19-
-----
20-
yyyy-mm-dd (not released yet)
18+
0.9
19+
---
20+
2018-07-04
2121

22+
- Introduced ``post_filter`` support.
23+
- Generalised the ``FilteringFilterBackend`` backend. Both
24+
``PostFilterFilteringFilterBackend`` and ``NestedFilteringFilterBackend``
25+
backends are now primarily based on it.
2226
- Reduced Elastic queries from 3 to 2 when using ``LimitOffsetPagination``.
2327

2428
0.8.4

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import find_packages, setup
44

5-
version = '0.8.4'
5+
version = '0.9'
66

77
DOCS_TRANSFORMATIONS = (
88
(

src/django_elasticsearch_dsl_drf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44

55
__title__ = 'django-elasticsearch-dsl-drf'
6-
__version__ = '0.8.4'
6+
__version__ = '0.9'
77
__author__ = 'Artur Barseghyan <[email protected]>'
88
__copyright__ = '2017-2018 Artur Barseghyan'
99
__license__ = 'GPL 2.0/LGPL 2.1'

src/django_elasticsearch_dsl_drf/filter_backends/filtering/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from .geo_spatial import GeoSpatialFilteringFilterBackend
77
from .ids import IdsFilterBackend
88
from .nested import NestedFilteringFilterBackend
9-
from .post_filter.common import PostFilterFilteringFilterBackend
9+
from .post_filter import PostFilterFilteringFilterBackend
1010

1111
__title__ = 'django_elasticsearch_dsl_drf.filter_backends.filtering'
1212
__author__ = 'Artur Barseghyan <[email protected]>'

0 commit comments

Comments
 (0)