From 87380ef71605ef6be858d23ee916cdce83252c73 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Wed, 16 Apr 2025 15:21:04 +0400 Subject: [PATCH] Release 9.0.0 Co-authored-by: Miguel Grinberg --- .buildkite/pipeline.yml | 4 +--- CHANGELOG.rst | 10 ++++++++++ eland/_version.py | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index b10685b..6b4c630 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -45,7 +45,5 @@ steps: - '3.10' - '3.9' stack: - - '8.16.0-SNAPSHOT' - - '8.15.2' - - '8.14.1' + - '9.0.0-SNAPSHOT' command: ./.buildkite/run-tests diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4b3a2bf..ae3a407 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ Changelog ========= +9.0.0 (2025-04-15) +------------------ + +* Drop Python 3.8, Support Python 3.12 (`#743 `_) +* Support Pandas 2 (`#742 `_) +* Upgrade transformers to 4.47 (`#752 `_) +* Remove ML model export as sklearn Pipeline (`#744 `_) +* Allow scikit-learn 1.5 (`#729 `_) +* Migrate docs from AsciiDoc to Markdown (`#762 `_) + 8.17.0 (2025-01-07) ------------------- diff --git a/eland/_version.py b/eland/_version.py index 72dfa7f..198f8a3 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.17.0" +__version__ = "9.0.0" __author__ = "Steve Dodson" __author_email__ = "steve.dodson@elastic.co" __maintainer__ = "Elastic Client Library Maintainers"