From 16178dfb5d0b3130c731b90f7e0f3f7051d458ba Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Tue, 22 Jun 2021 11:59:27 -0500 Subject: [PATCH] Release 7.13.0b1 --- CHANGELOG.rst | 33 ++++++++++++++++++++++++ docs/sphinx/reference/supported_apis.rst | 4 +-- eland/_version.py | 2 +- 3 files changed, 36 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b0ac6a2..f812ed0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,39 @@ Changelog ========= +7.13.0b1 (2021-06-22) +--------------------- + +Added +^^^^^ + +* Added ``DataFrame.quantile()``, ``Series.quantile()``, and + ``DataFrameGroupBy.quantile()`` aggregations (`#318`_ and `#356`_, contributed by `@V1NAY8`_) + +Changed +^^^^^^^ + +* Changed the error raised when ``es_index_pattern`` doesn't point to any indices + to be more user-friendly (`#346`_) + +Fixed +^^^^^ + +* Fixed a warning about conflicting field types when wildcards are used + in ``es_index_pattern`` (`#346`_) + +* Fixed sorting when using ``DataFrame.groupby()`` with ``dropna`` + (`#322`_, contributed by `@V1NAY8`_) + +* Fixed deprecated usage ``numpy.int`` in favor of ``numpy.int_`` (`#354`_, contributed by `@V1NAY8`_) + + .. _#318: https://github.com/elastic/eland/pull/318 + .. _#322: https://github.com/elastic/eland/pull/322 + .. _#346: https://github.com/elastic/eland/pull/346 + .. _#354: https://github.com/elastic/eland/pull/354 + .. _#356: https://github.com/elastic/eland/pull/356 + + 7.10.1b1 (2021-01-12) --------------------- diff --git a/docs/sphinx/reference/supported_apis.rst b/docs/sphinx/reference/supported_apis.rst index b375819..43a8625 100644 --- a/docs/sphinx/reference/supported_apis.rst +++ b/docs/sphinx/reference/supported_apis.rst @@ -290,7 +290,7 @@ script instead of being modified manually. +---------------------------------------+------------+ | ``ed.DataFrame.product()`` | No | +---------------------------------------+------------+ -| ``ed.DataFrame.quantile()`` | No | +| ``ed.DataFrame.quantile()`` | **Yes** | +---------------------------------------+------------+ | ``ed.DataFrame.query()`` | **Yes** | +---------------------------------------+------------+ @@ -874,7 +874,7 @@ script instead of being modified manually. +---------------------------------------+------------+ | ``ed.Series.product()`` | No | +---------------------------------------+------------+ -| ``ed.Series.quantile()`` | No | +| ``ed.Series.quantile()`` | **Yes** | +---------------------------------------+------------+ | ``ed.Series.radd()`` | **Yes** | +---------------------------------------+------------+ diff --git a/eland/_version.py b/eland/_version.py index a05487e..7d9fd29 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.10.1b1" +__version__ = "7.13.1b1" __author__ = "Steve Dodson" __author_email__ = "steve.dodson@elastic.co" __maintainer__ = "Seth Michael Larson"