From 41db37246f5f90ebfe860064e24fef65a9e432d9 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Wed, 8 Nov 2023 14:51:14 +0400 Subject: [PATCH] Release 8.11.0 --- CHANGELOG.rst | 29 ++++++++++++++++++++++++++++- eland/_version.py | 2 +- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5bfae66..29ffb25 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,32 @@ Changelog ========= +8.11.0 (2023-11-08) +------------------- + +Added +^^^^^ + +* Support E5 small multilingual model (`#625`_) + +Changed +^^^^^^^ + +* Stream writes in ``ed.DataFrame.to_csv()`` (`#579`_) +* Improve memory estimation for NLP models (`#568`_) + +Fixed +^^^^^ + +* Fixed deprecations in preparation of Pandas 2.0 support (`#602`_, `#603`_, contributed by `@bartbroere`_) + + +.. _#568: https://github.com/elastic/eland/pull/568 +.. _#579: https://github.com/elastic/eland/pull/579 +.. _#602: https://github.com/elastic/eland/pull/602 +.. _#603: https://github.com/elastic/eland/pull/603 +.. _#625: https://github.com/elastic/eland/pull/625 + 8.10.1 (2023-10-11) ------------------- @@ -34,8 +60,9 @@ Changed Fixed ^^^^^ -* Fixed deprecations in preparation of Pandas 2.0 support (`#593`_, `#596`_) +* Fixed deprecations in preparation of Pandas 2.0 support (`#593`_, `#596`_, contributed by `@bartbroere`_) +.. _@bartbroere: https://github.com/bartbroere .. _#613: https://github.com/elastic/eland/pull/613 .. _#608: https://github.com/elastic/eland/pull/608 .. _#615: https://github.com/elastic/eland/pull/615 diff --git a/eland/_version.py b/eland/_version.py index fceafc4..912f7d1 100644 --- a/eland/_version.py +++ b/eland/_version.py @@ -18,7 +18,7 @@ __title__ = "eland" __description__ = "Python Client and Toolkit for DataFrames, Big Data, Machine Learning and ETL in Elasticsearch" __url__ = "https://github.com/elastic/eland" -__version__ = "8.10.1" +__version__ = "8.11.0" __author__ = "Steve Dodson" __author_email__ = "steve.dodson@elastic.co" __maintainer__ = "Elastic Client Library Maintainers"