Skip to content

Commit

Permalink
Version bump for 7.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
honzakral committed Apr 25, 2019
1 parent d954de3 commit d8d0c47
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
10 changes: 8 additions & 2 deletions Changelog.rst
Expand Up @@ -3,8 +3,14 @@
Changelog
=========

7.0.0 (dev)
-----------
7.0.0 (2019-04-26)
------------------

* Compatibility with Elasticsearch 7.x
* ``Document.save()`` now returns ``"created"`` or ``"updated"``
* Dropped support for Python 2.6, 3.2, and 3.3
* When using ``fields`` the values are no longer merged into the body of the
document and have to be accessed via ``.meta.fields`` only

6.4.0 (2019-04-26)
------------------
Expand Down
6 changes: 6 additions & 0 deletions README
Expand Up @@ -37,6 +37,9 @@ Compatibility
The library is compatible with all Elasticsearch versions since ``2.x`` but you
**have to use a matching major version**:

For **Elasticsearch 7.0** and later, use the major version 7 (``7.x.y``) of the
library.

For **Elasticsearch 6.0** and later, use the major version 6 (``6.x.y``) of the
library.

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

# Elasticsearch 7.x
elasticsearch-dsl>=7.0.0,<8.0.0

# Elasticsearch 6.x
elasticsearch-dsl>=6.0.0,<7.0.0

Expand Down
2 changes: 1 addition & 1 deletion elasticsearch_dsl/__init__.py
Expand Up @@ -11,6 +11,6 @@
from .faceted_search import *
from .wrappers import *

VERSION = (7, 0, 0, 'dev')
VERSION = (7, 0, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@
from os.path import join, dirname
from setuptools import setup, find_packages

VERSION = (7, 0, 0, 'dev')
VERSION = (7, 0, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))

Expand Down

0 comments on commit d8d0c47

Please sign in to comment.