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.2.1 (2020-06-02)
7
+ ------------------
8
+
9
+ * Fixed issue when slicing a Search that would result in a negative
10
+ ``size `` instead of a ``size `` of 0. (`#1360 `_, contributed by `@bk-equityzen `_)
11
+
12
+ .. _@bk-equityzen : https://github.com/bk-equityzen
13
+ .. _#1360 : https://github.com/elastic/elasticsearch-dsl-py/pull/1360
14
+
6
15
7.2.0 (2020-05-04)
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 , 2 , 0 )
14
+ VERSION = (7 , 2 , 1 )
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 , 2 , 0 )
5
+ VERSION = (7 , 2 , 1 )
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