Skip to content

Commit 1b74154

Browse files
committedOct 20, 2020
Release 7.10.0a2
1 parent c4e8edc commit 1b74154

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

‎Changelog.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
Changelog
44
=========
55

6-
7.10.0a1 (2020-10-14)
6+
7.10.0a2 (2020-10-20)
77
---------------------
88

99
* Added support for Elasticsearch 7.10 APIs
10-
* Added basic type stubs for static type checking and IDE auto-complete of API parameters (`#1297`_)
10+
* Added basic type stubs for static type checking and IDE auto-complete of API parameters (`#1297`_, `#1406`_)
1111
* Added support for `Optimistic Concurrency Control options`_
1212
(``_if_seq_no``/``_if_primary_term``) to bulk helpers (`#1387`_)
1313
* Added support for passing ``_source`` with ``"_op_type": "update"``
@@ -19,6 +19,7 @@ Changelog
1919
install with ``--use-feature=2020-resolver``. Users should see no changes. (`#1401`_)
2020

2121
.. _Optimistic Concurrency Control options: https://www.elastic.co/guide/en/elasticsearch/reference/current/optimistic-concurrency-control.html
22+
.. _#1406: https://github.com/elastic/elasticsearch-py/pull/1406
2223
.. _#1401: https://github.com/elastic/elasticsearch-py/pull/1401
2324
.. _#1394: https://github.com/elastic/elasticsearch-py/pull/1394
2425
.. _#1387: https://github.com/elastic/elasticsearch-py/pull/1387

‎elasticsearch/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# flake8: noqa
1919
from __future__ import absolute_import
2020

21-
__versionstr__ = "7.10.1+dev"
21+
__versionstr__ = "7.10.0a2"
2222

2323
import re
2424
import sys

0 commit comments

Comments
 (0)
Please sign in to comment.