From 225a23a59a7395c6b504c6c0d01e57cec1f58103 Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Mon, 28 Sep 2020 16:07:11 -0500 Subject: [PATCH] Release 7.9.1a1 --- CHANGELOG.rst | 38 ++++++++++++++++++++++++++++++++++++++ eland/_version.py | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 155a53f..12b5d8c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,44 @@ Changelog ========= +7.9.1a1 (2020-09-29) +-------------------- + +Added +^^^^^ + +* Added the ``predict()`` method and ``model_type``, + ``feature_names``, and ``results_field`` properties + to ``MLModel`` (`#266`_) + + +Deprecated +^^^^^^^^^^ + +* Deprecated ``ImportedMLModel`` in favor of + ``MLModel.import_model(...)`` (`#266`_) + + +Changed +^^^^^^^ + +* Changed DataFrame aggregations to use ``numeric_only=None`` + instead of ``numeric_only=True`` by default. This is the same + behavior as Pandas (`#270`_, contributed by `@V1NAY8`_) + +Fixed +^^^^^ + +* Fixed ``DataFrame.agg()`` when given a string instead of a list of + aggregations will now properly return a ``Series`` instead of + a ``DataFrame`` (`#263`_, contributed by `@V1NAY8`_) + + + .. _#263: https://github.com/elastic/eland/pull/263 + .. _#266: https://github.com/elastic/eland/pull/266 + .. _#270: https://github.com/elastic/eland/pull/270 + + 7.9.0a1 (2020-08-18) -------------------- diff --git a/eland/_version.py b/eland/_version.py index c48f0a2..8e9748a 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__ = "7.9.0a1" +__version__ = "7.9.1a1" __author__ = "Steve Dodson" __author_email__ = "steve.dodson@elastic.co" __maintainer__ = "Seth Michael Larson"