From 5bbb8e484a3687a057c87ac64096e38b63bd2c46 Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Thu, 5 May 2022 17:25:31 -0500 Subject: [PATCH] Release 8.2.0 --- CHANGELOG.rst | 17 +++++++++++++++++ eland/_version.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a2e3c9b..04f820d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,23 @@ Changelog ========= +8.2.0 (2022-05-09) +------------------ + +Added +^^^^^ + +* Added support for passing Cloud ID via ``--cloud-id`` to ``eland_import_hub_model`` CLI tool (`#462`_) +* Added support for authenticating via ``--es-username``, ``--es-password``, and ``--es-api-key`` to the ``eland_import_hub_model`` CLI tool (`#461`_) +* Added support for XGBoost 1.6 (`#458`_) +* Added support for ``question_answering`` NLP tasks (`#457`_) + +.. _#457: https://github.com/elastic/eland/pull/457 +.. _#458: https://github.com/elastic/eland/pull/458 +.. _#461: https://github.com/elastic/eland/pull/461 +.. _#462: https://github.com/elastic/eland/pull/462 + + 8.1.0 (2022-03-31) ------------------ diff --git a/eland/_version.py b/eland/_version.py index 4a284f7..c0323d8 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.1.0" +__version__ = "8.2.0" __author__ = "Steve Dodson" __author_email__ = "steve.dodson@elastic.co" __maintainer__ = "Seth Michael Larson"