Skip to content

Commit

Permalink
prepare 0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Aug 6, 2019
1 parent a251b64 commit e068faf
Show file tree
Hide file tree
Showing 10 changed files with 57 additions and 9 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.19
----
2019-08-06

.. note::

Dropping support for Elasticsearch versions prior 6.x. This is unfortunate,
but this project depends on the upstream ``django-elasticsearch-dsl`` where
as of version 6.4.x the support for older Elasticsearch versions was
dropped. Use ``django-elasticsearch-dsl-drf`` version 0.18 if you need
to work with 5.x or 2.x.

- Dropping support for Elasticsearch versions prior to 6.x.

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

0.19
----
2019-08-06

.. note::

Dropping support for Elasticsearch versions prior 6.x. This is unfortunate,
but this project depends on the upstream ``django-elasticsearch-dsl`` where
as of version 6.4.x the support for older Elasticsearch versions was
dropped. Use ``django-elasticsearch-dsl-drf`` version 0.18 if you need
to work with 5.x or 2.x.

- Dropping support for Elasticsearch versions prior to 6.x.

0.18
----
2019-06-26
Expand Down
10 changes: 7 additions & 3 deletions docs/dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Dependencies
============
**elasticsearch and elasticsearch-dsl**

Depending on your Elasticsearch version (either 2.x, 5.x or 6.x) you should
Depending on your ``Elasticsearch`` version (either 2.x, 5.x or 6.x) you should
use 2.x, 5.x or 6.x versions of the ``elasticsearch`` and ``elasticsearch-dsl``
packages accordingly.

Expand All @@ -11,13 +11,17 @@ packages accordingly.
You are advised to use the latest version of `django-elasticsearch-dsl
<https://pypi.python.org/pypi/django-elasticsearch-dsl>`_.

As of ``django-elasticsearch-dsl-drf`` 0.19, support for Elasticsearch versions
prior 6.x has been dropped.

**Django/ Django REST Framework**

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

Starting from version 0.18 support for Django versions prior 1.11 and
Django REST Framework versions prior 3.9 has been dropped.
Starting from ``django-elasticsearch-dsl-drf`` 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:

Expand Down
5 changes: 5 additions & 0 deletions docs/installing_elasticsearch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ quickly switch between different Elasticsearch versions. Since this packages
supports 2.x, 5.x and 6.x branches, you could make use of
the following boxes/containers for development and testing.

.. note::

As of ``django-elasticsearch-dsl-drf`` 0.19, support for Elasticsearch
versions prior 6.x has been dropped.

For all containers/boxes mentioned below, no authentication is required (for
Elasticsearch).

Expand Down
10 changes: 7 additions & 3 deletions docs_src/dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Dependencies
============
**elasticsearch and elasticsearch-dsl**

Depending on your Elasticsearch version (either 2.x, 5.x or 6.x) you should
Depending on your ``Elasticsearch`` version (either 2.x, 5.x or 6.x) you should
use 2.x, 5.x or 6.x versions of the ``elasticsearch`` and ``elasticsearch-dsl``
packages accordingly.

Expand All @@ -11,13 +11,17 @@ packages accordingly.
You are advised to use the latest version of `django-elasticsearch-dsl
<https://pypi.python.org/pypi/django-elasticsearch-dsl>`_.

As of ``django-elasticsearch-dsl-drf`` 0.19, support for Elasticsearch versions
prior 6.x has been dropped.

**Django/ Django REST Framework**

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

Starting from version 0.18 support for Django versions prior 1.11 and
Django REST Framework versions prior 3.9 has been dropped.
Starting from ``django-elasticsearch-dsl-drf`` 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:

Expand Down
5 changes: 5 additions & 0 deletions docs_src/installing_elasticsearch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ quickly switch between different Elasticsearch versions. Since this packages
supports 2.x, 5.x and 6.x branches, you could make use of
the following boxes/containers for development and testing.

.. note::

As of ``django-elasticsearch-dsl-drf`` 0.19, support for Elasticsearch
versions prior 6.x has been dropped.

For all containers/boxes mentioned below, no authentication is required (for
Elasticsearch).

Expand Down
1 change: 1 addition & 0 deletions examples/requirements/elastic_2x.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
elasticsearch==2.4.1
elasticsearch-dsl==2.2.0
django-elasticsearch-dsl==0.5.1
1 change: 1 addition & 0 deletions examples/requirements/elastic_5x.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
elasticsearch==5.4.0
elasticsearch-dsl==5.3.0
django-elasticsearch-dsl==0.5.1
4 changes: 2 additions & 2 deletions 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.18'
version = '0.19'

DOCS_TRANSFORMATIONS = (
(
Expand Down Expand Up @@ -157,7 +157,7 @@

install_requires = [
'six>=1.9',
'django-nine>=0.1.10',
'django-nine>=0.2',
'django-elasticsearch-dsl>=0.3',
'elasticsearch-dsl',
'elasticsearch',
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.18'
__version__ = '0.19'
__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 e068faf

Please sign in to comment.