Skip to content

Commit b637d4f

Browse files
Release 8.15.0 (#1874)
1 parent d053451 commit b637d4f

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

Changelog.rst

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
Changelog
44
=========
55

6+
8.15.0 (2024-08-09)
7+
-------------------
8+
9+
* Added the option to use Python types to declare document fields (`#1845 <https://github.com/elastic/elasticsearch-dsl-py/pull/1845>`_)
10+
* Added type annotations (`#1533 <https://github.com/elastic/elasticsearch-dsl-py/pull/1533>`_)
11+
* Added support for bulk document operations with ``Document.bulk()`` (`#1864 <https://github.com/elastic/elasticsearch-dsl-py/pull/1864>`_)
12+
* Added the ``ConstantKeyword`` field to the top-level package (`#1843 <https://github.com/elastic/elasticsearch-dsl-py/pull/1843>`_)
13+
* Added ``async_connections`` to the top-level package (`#1865 <https://github.com/elastic/elasticsearch-dsl-py/pull/1865>`_)
14+
* Added index creation to the aggregations example (`#1862 <https://github.com/elastic/elasticsearch-dsl-py/pull/1862>`_)
15+
616
8.14.0 (2024-06-10)
717
-------------------
818

elasticsearch_dsl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
from .utils import AttrDict, AttrList, DslBase
9696
from .wrappers import Range
9797

98-
VERSION = (8, 14, 0)
98+
VERSION = (8, 15, 0)
9999
__version__ = VERSION
100100
__versionstr__ = ".".join(map(str, VERSION))
101101
__all__ = [

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
from setuptools import find_packages, setup
2121

22-
VERSION = (8, 14, 0)
22+
VERSION = (8, 15, 0)
2323
__version__ = VERSION
2424
__versionstr__ = ".".join(map(str, VERSION))
2525

0 commit comments

Comments
 (0)