File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
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
+
6
15
7.0.0 (2019-04-26)
7
16
------------------
8
17
Original file line number Diff line number Diff line change 11
11
from .faceted_search import *
12
12
from .wrappers import *
13
13
14
- VERSION = (7 , 0 , 0 )
14
+ VERSION = (7 , 1 , 0 )
15
15
__version__ = VERSION
16
16
__versionstr__ = '.' .join (map (str , VERSION ))
Original file line number Diff line number Diff line change 2
2
from os .path import join , dirname
3
3
from setuptools import setup , find_packages
4
4
5
- VERSION = (7 , 0 , 0 )
5
+ VERSION = (7 , 1 , 0 )
6
6
__version__ = VERSION
7
7
__versionstr__ = '.' .join (map (str , VERSION ))
8
8
You can’t perform that action at this time.
0 commit comments