From 2e74a56c0a1731d692036c88458f27a55f3d1060 Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Mon, 23 Mar 2020 08:43:59 -0500 Subject: [PATCH] Release v7.6.0a4 --- CHANGELOG.rst | 13 +++++++++++++ eland/_version.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..69fc0e6 --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,13 @@ +Changelog +========= + +7.6.0a4 (2020-03-23) +-------------------- + +* Fixed issue in ``DataFrame.info()`` when called on an empty frame (`#135`_) +* Fixed issues where many ``_source`` fields would generate + a ``too_long_frame`` error (`#135`_, `#137`_) +* Changed requirement for ``xgboost`` from ``>=0.90`` to ``==0.90`` + + .. _#135: https://github.com/elastic/eland/pull/135 + .. _#137: https://github.com/elastic/eland/pull/137 diff --git a/eland/_version.py b/eland/_version.py index 059e624..1984413 100644 --- a/eland/_version.py +++ b/eland/_version.py @@ -15,6 +15,6 @@ __title__ = 'eland' __description__ = 'Python elasticsearch client to analyse, explore and manipulate data that resides in elasticsearch.' __url__ = 'https://github.com/elastic/eland' -__version__ = '7.6.0a3' +__version__ = '7.6.0a4' __maintainer__ = 'Elasticsearch B.V.' __maintainer_email__ = 'steve.dodson@elastic.co'