Skip to content

Commit 24abee3

Browse files
committed
Version bump to 7.1.0
1 parent 2c099d5 commit 24abee3

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

Changelog.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
Changelog
44
=========
55

6+
7.1.0 (2019-10-23)
7+
------------------
8+
9+
* Optimistic concurrent control for Document.delete
10+
* Removing deprecated ``DocType``
11+
* Proper count caching for ES 7.x
12+
* Support for ``multiplexer`` token filter
13+
* Don't substitute for ``__`` in ``FacetedSearch``
14+
615
7.0.0 (2019-04-26)
716
------------------
817

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)
14+
VERSION = (7, 1, 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)
5+
VERSION = (7, 1, 0)
66
__version__ = VERSION
77
__versionstr__ = '.'.join(map(str, VERSION))
88

0 commit comments

Comments
 (0)