Release 7.13.0b1

This commit is contained in:
Seth Michael Larson 2021-06-22 11:59:27 -05:00 committed by GitHub
parent ac2efb5863
commit 16178dfb5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 3 deletions

View File

@ -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)
---------------------

View File

@ -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** |
+---------------------------------------+------------+

View File

@ -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"