From 1921792df89950730cb73d8b894d230cf7925e39 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Wed, 27 Mar 2024 18:18:21 +0400 Subject: [PATCH] Release 8.13.0 --- CHANGELOG.rst | 23 +++++++++++++++++++++++ eland/_version.py | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d71393a..081a058 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,29 @@ Changelog ========= +8.13.0 (2024-03-27) +------------------- + +Added +^^^^^ + +* Added support for Python 3.11 (`#681`_) +* Added ``eland.DataFrame.to_json`` function (`#661`_, contributed by `@bartbroere`_) +* Added override option to specify the model's max input size (`#674`_) + +Changed +^^^^^^^ + +* Upgraded torch to 2.1.2 (`#671`_) +* Mirrored pandas' ``lineterminator`` instead of ``line_terminator`` in ``to_csv`` (`#595`_, contributed by `@bartbroere`_) + +.. _#595: https://github.com/elastic/eland/pull/595 +.. _#661: https://github.com/elastic/eland/pull/661 +.. _#671: https://github.com/elastic/eland/pull/671 +.. _#674: https://github.com/elastic/eland/pull/674 +.. _#681: https://github.com/elastic/eland/pull/681 + + 8.12.1 (2024-01-30) ------------------- diff --git a/eland/_version.py b/eland/_version.py index a1781a9..94310b0 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.12.1" +__version__ = "8.13.0" __author__ = "Steve Dodson" __author_email__ = "steve.dodson@elastic.co" __maintainer__ = "Elastic Client Library Maintainers"