Skip to content

Commit c5c157f

Browse files
prepare 0.7.2
1 parent c70eba4 commit c5c157f

File tree

11 files changed

+73
-326
lines changed

11 files changed

+73
-326
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,17 @@ 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.7.2
19+
-----
20+
2018-05-09
21+
22+
.. note::
23+
24+
Release dedicated to the Victory Day, the victims of the Second World War
25+
and Liberation of Shushi.
26+
27+
- Django REST framework 3.8.x support.
28+
1829
0.7.1
1930
-----
2031
2018-04-04

docs/changelog.rst

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,17 @@ 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.7.2
19+
-----
20+
2018-05-09
21+
22+
.. note::
23+
24+
Release dedicated to the Victory Day, the victims of the Second World War
25+
and Liberation of Shushi.
26+
27+
- Django REST framework 3.8.x support.
28+
1829
0.7.1
1930
-----
2031
2018-04-04
@@ -230,7 +241,7 @@ are used for versioning (schema follows below):
230241
---
231242
2017-07-11
232243

233-
- Add suggestions support (`term`, `phrase` and `completion`).
244+
- Add suggestions support (``term``, ``phrase`` and ``completion``).
234245

235246
0.2.6
236247
-----
@@ -294,7 +305,7 @@ are used for versioning (schema follows below):
294305
-----
295306
2017-06-23
296307

297-
- Implemented ``gt`, ``gte``, ``lt`` and ``lte`` functional query lookups.
308+
- Implemented ``gt``, ``gte``, ``lt`` and ``lte`` functional query lookups.
298309
- Implemented ``ids`` native filter lookup.
299310

300311
0.1.5

examples/simple/search_indexes/documents/book.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class BookDocument(DocType):
119119
multi=True
120120
)
121121

122-
null_field = fields.StringField(attr='null_field_indexing')
122+
null_field = StringField(attr='null_field_indexing')
123123

124124
class Meta(object):
125125
"""Meta options."""

examples/simple/search_indexes/rest_framework_extensions_routers_compat.py

Lines changed: 0 additions & 297 deletions
This file was deleted.

examples/simple/search_indexes/urls.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from django.conf.urls import url, include
2-
from .rest_framework_extensions_routers_compat import ExtendedDefaultRouter
3-
# from rest_framework_extensions.routers import ExtendedDefaultRouter
2+
from rest_framework.routers import DefaultRouter
43
from .viewsets import (
54
AddressDocumentViewSet,
65
AuthorDocumentViewSet,
@@ -12,7 +11,7 @@
1211

1312
__all__ = ('urlpatterns',)
1413

15-
router = ExtendedDefaultRouter()
14+
router = DefaultRouter()
1615

1716
addresses = router.register(
1817
r'addresses',

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.7.1'
5+
version = '0.7.2'
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.7.1'
6+
__version__ = '0.7.2'
77
__author__ = 'Artur Barseghyan <[email protected]>'
88
__copyright__ = '2017-2018 Artur Barseghyan'
99
__license__ = 'GPL 2.0/LGPL 2.1'

0 commit comments

Comments
 (0)