Release 8.11.0

This commit is contained in:
Quentin Pradet 2023-11-08 14:51:14 +04:00 committed by GitHub
parent 6cecb454e3
commit 41db37246f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 2 deletions

View File

@ -2,6 +2,32 @@
Changelog 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) 8.10.1 (2023-10-11)
------------------- -------------------
@ -34,8 +60,9 @@ Changed
Fixed 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 .. _#613: https://github.com/elastic/eland/pull/613
.. _#608: https://github.com/elastic/eland/pull/608 .. _#608: https://github.com/elastic/eland/pull/608
.. _#615: https://github.com/elastic/eland/pull/615 .. _#615: https://github.com/elastic/eland/pull/615

View File

@ -18,7 +18,7 @@
__title__ = "eland" __title__ = "eland"
__description__ = "Python Client and Toolkit for DataFrames, Big Data, Machine Learning and ETL in Elasticsearch" __description__ = "Python Client and Toolkit for DataFrames, Big Data, Machine Learning and ETL in Elasticsearch"
__url__ = "https://github.com/elastic/eland" __url__ = "https://github.com/elastic/eland"
__version__ = "8.10.1" __version__ = "8.11.0"
__author__ = "Steve Dodson" __author__ = "Steve Dodson"
__author_email__ = "steve.dodson@elastic.co" __author_email__ = "steve.dodson@elastic.co"
__maintainer__ = "Elastic Client Library Maintainers" __maintainer__ = "Elastic Client Library Maintainers"