Skip to content

Commit 399bac6

Browse files
committed
Release 7.2.1
1 parent d112a59 commit 399bac6

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

0 commit comments

Comments
 (0)