From 6bd7aa3340559bb8c4cc0f32cba5ae7716d7f4b2 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Mon, 12 Aug 2024 11:23:37 +0100 Subject: [PATCH] Bring 8.15.0 release to main (#1875) --- Changelog.rst | 10 ++++++++++ elasticsearch_dsl/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index 87b677ba..25073260 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,6 +3,16 @@ Changelog ========= +8.15.0 (2024-08-09) +------------------- + +* Added the option to use Python types to declare document fields (`#1845 `_) +* Added type annotations (`#1533 `_) +* Added support for bulk document operations with ``Document.bulk()`` (`#1864 `_) +* Added the ``ConstantKeyword`` field to the top-level package (`#1843 `_) +* Added ``async_connections`` to the top-level package (`#1865 `_) +* Added index creation to the aggregations example (`#1862 `_) + 8.14.0 (2024-06-10) ------------------- diff --git a/elasticsearch_dsl/__init__.py b/elasticsearch_dsl/__init__.py index 60214a75..e7e86a1f 100644 --- a/elasticsearch_dsl/__init__.py +++ b/elasticsearch_dsl/__init__.py @@ -95,7 +95,7 @@ from .utils import AttrDict, AttrList, DslBase from .wrappers import Range -VERSION = (8, 14, 0) +VERSION = (8, 15, 0) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION)) __all__ = [ diff --git a/setup.py b/setup.py index 464dec56..f7953b77 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ from setuptools import find_packages, setup -VERSION = (8, 14, 0) +VERSION = (8, 15, 0) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION))