Skip to content

Commit

Permalink
prepare 0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Jun 26, 2019
1 parent 54f6cb1 commit e958452
Show file tree
Hide file tree
Showing 7 changed files with 78 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.18
----
2019-06-26

.. note::

Support for Django versions prior 1.11 has been dropped.
Support for Django REST Framework prior 3.9 has been dropped.

- Dropping support for Django versions prior 1.11.
- Dropping support for Django REST Framework versions prior 3.9.
- Fix Django REST Framework deprecations.

0.17.7
------
2019-05-30
Expand Down
13 changes: 13 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.18
----
2019-06-26

.. note::

Support for Django versions prior 1.11 has been dropped.
Support for Django REST Framework prior 3.9 has been dropped.

- Dropping support for Django versions prior 1.11.
- Dropping support for Django REST Framework versions prior 3.9.
- Fix Django REST Framework deprecations.

0.17.7
------
2019-05-30
Expand Down
22 changes: 20 additions & 2 deletions docs/dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,30 @@ packages accordingly.
You are advised to use the latest version of `django-elasticsearch-dsl
<https://pypi.python.org/pypi/django-elasticsearch-dsl>`_.

**djangorestframework**
**Django/ Django REST Framework**

Initial version of this package was written for `djangorestframework
<https://pypi.python.org/pypi/djangorestframework>`_ 3.6.2.

Tested with the following versions of Django/Django REST Framework:
Starting from version 0.18 support for Django versions prior 1.11 and
Django REST Framework versions prior 3.9 has been dropped.

Current compatibility matrix is:

+--------+-----------------------+
| Django | Django REST Framework |
+--------+-----------------------+
| 1.11 | 3.9.3 |
+--------+-----------------------+
| 2.0 | 3.9.3 |
+--------+-----------------------+
| 2.1 | 3.9.3 |
+--------+-----------------------+
| 2.2 | 3.9.3 |
+--------+-----------------------+

The version 0.17.7 has been tested with the following versions of
Django and Django REST Framework:

+--------+-----------------------+
| Django | Django REST Framework |
Expand Down
10 changes: 10 additions & 0 deletions docs/installing_elasticsearch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ Docker
docker pull docker.elastic.co/elasticsearch/elasticsearch:6.4.0
docker run -p 9200:9200 -e "discovery.type=single-node" -e "xpack.security.enabled=false" docker.elastic.co/elasticsearch/elasticsearch:6.4.0
7.x
~~~
**7.1.1**

.. code-block:: sh
docker pull docker.elastic.co/elasticsearch/elasticsearch:7.1.1
docker run -p 9200:9200 -e "discovery.type=single-node" -e "xpack.security.enabled=false" docker.elastic.co/elasticsearch/elasticsearch:7.1.1
Vagrant
-------
2.x
Expand Down
22 changes: 20 additions & 2 deletions docs_src/dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,30 @@ packages accordingly.
You are advised to use the latest version of `django-elasticsearch-dsl
<https://pypi.python.org/pypi/django-elasticsearch-dsl>`_.

**djangorestframework**
**Django/ Django REST Framework**

Initial version of this package was written for `djangorestframework
<https://pypi.python.org/pypi/djangorestframework>`_ 3.6.2.

Tested with the following versions of Django/Django REST Framework:
Starting from version 0.18 support for Django versions prior 1.11 and
Django REST Framework versions prior 3.9 has been dropped.

Current compatibility matrix is:

+--------+-----------------------+
| Django | Django REST Framework |
+--------+-----------------------+
| 1.11 | 3.9.3 |
+--------+-----------------------+
| 2.0 | 3.9.3 |
+--------+-----------------------+
| 2.1 | 3.9.3 |
+--------+-----------------------+
| 2.2 | 3.9.3 |
+--------+-----------------------+

The version 0.17.7 has been tested with the following versions of
Django and Django REST Framework:

+--------+-----------------------+
| Django | Django REST Framework |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import find_packages, setup

version = '0.17.7'
version = '0.18'

DOCS_TRANSFORMATIONS = (
(
Expand Down
2 changes: 1 addition & 1 deletion src/django_elasticsearch_dsl_drf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

__title__ = 'django-elasticsearch-dsl-drf'
__version__ = '0.17.7'
__version__ = '0.18'
__author__ = 'Artur Barseghyan <artur.barseghyan@gmail.com>'
__copyright__ = '2017-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
Expand Down

0 comments on commit e958452

Please sign in to comment.