Release 8.1.0

This commit is contained in:
Seth Michael Larson 2022-03-31 17:12:26 -05:00 committed by GitHub
parent 76a52b7947
commit cb839a9ac9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 2 deletions

View File

@ -2,6 +2,19 @@
Changelog
=========
8.1.0 (2022-03-31)
------------------
Added
^^^^^
* Added support for ``eland.Series.unique()`` (`#448`_, contributed by `@V1NAY8`_)
* Added ``--ca-certs`` and ``--insecure`` options to ``eland_import_hub_model`` for configuring TLS (`#441`_)
.. _#448: https://github.com/elastic/eland/pull/448
.. _#441: https://github.com/elastic/eland/pull/441
8.0.0 (2022-02-10)
------------------

View File

@ -779,6 +779,8 @@ script instead of being modified manually.
+---------------------------------------+------------+
| ``ed.Series.infer_objects()`` | No |
+---------------------------------------+------------+
| ``ed.Series.info()`` | No |
+---------------------------------------+------------+
| ``ed.Series.interpolate()`` | No |
+---------------------------------------+------------+
| ``ed.Series.is_monotonic`` | No |
@ -1013,7 +1015,7 @@ script instead of being modified manually.
+---------------------------------------+------------+
| ``ed.Series.tz_localize()`` | No |
+---------------------------------------+------------+
| ``ed.Series.unique()`` | No |
| ``ed.Series.unique()`` | **Yes** |
+---------------------------------------+------------+
| ``ed.Series.unstack()`` | No |
+---------------------------------------+------------+

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__ = "8.0.0"
__version__ = "8.1.0"
__author__ = "Steve Dodson"
__author_email__ = "steve.dodson@elastic.co"
__maintainer__ = "Seth Michael Larson"