diff --git a/CHANGELOG.rst b/CHANGELOG.rst index af557ff..a2e3c9b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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) ------------------ diff --git a/docs/sphinx/reference/supported_apis.rst b/docs/sphinx/reference/supported_apis.rst index f7a5ae7..3a7eacb 100644 --- a/docs/sphinx/reference/supported_apis.rst +++ b/docs/sphinx/reference/supported_apis.rst @@ -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 | +---------------------------------------+------------+ diff --git a/eland/_version.py b/eland/_version.py index 73017be..4a284f7 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.0.0" +__version__ = "8.1.0" __author__ = "Steve Dodson" __author_email__ = "steve.dodson@elastic.co" __maintainer__ = "Seth Michael Larson"