Skip to content

Commit d8d0c47

Browse files
committed
Version bump for 7.0.0 release
1 parent d954de3 commit d8d0c47

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

Changelog.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@
33
Changelog
44
=========
55

6-
7.0.0 (dev)
7-
-----------
6+
7.0.0 (2019-04-26)
7+
------------------
8+
9+
* Compatibility with Elasticsearch 7.x
10+
* ``Document.save()`` now returns ``"created"`` or ``"updated"``
11+
* Dropped support for Python 2.6, 3.2, and 3.3
12+
* When using ``fields`` the values are no longer merged into the body of the
13+
document and have to be accessed via ``.meta.fields`` only
814

915
6.4.0 (2019-04-26)
1016
------------------

README

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ Compatibility
3737
The library is compatible with all Elasticsearch versions since ``2.x`` but you
3838
**have to use a matching major version**:
3939

40+
For **Elasticsearch 7.0** and later, use the major version 7 (``7.x.y``) of the
41+
library.
42+
4043
For **Elasticsearch 6.0** and later, use the major version 6 (``6.x.y``) of the
4144
library.
4245

@@ -50,6 +53,9 @@ library.
5053
The recommended way to set your requirements in your `setup.py` or
5154
`requirements.txt` is::
5255

56+
# Elasticsearch 7.x
57+
elasticsearch-dsl>=7.0.0,<8.0.0
58+
5359
# Elasticsearch 6.x
5460
elasticsearch-dsl>=6.0.0,<7.0.0
5561

elasticsearch_dsl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
from .faceted_search import *
1212
from .wrappers import *
1313

14-
VERSION = (7, 0, 0, 'dev')
14+
VERSION = (7, 0, 0)
1515
__version__ = VERSION
1616
__versionstr__ = '.'.join(map(str, VERSION))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from os.path import join, dirname
33
from setuptools import setup, find_packages
44

5-
VERSION = (7, 0, 0, 'dev')
5+
VERSION = (7, 0, 0)
66
__version__ = VERSION
77
__versionstr__ = '.'.join(map(str, VERSION))
88

0 commit comments

Comments
 (0)