diff --git a/README.md b/README.md index a5524ab..bf1dfe7 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ eland depends on pandas version 0.25.3. #### Elasticsearch Versions -eland is versioned like the Elastic stack. E.g. eland 7.5 compatible with Elasticsearch 7.5 etc. +eland is versioned like the Elastic stack. E.g. eland 7.5 is compatible with Elasticsearch 7.x up to 7.5 A major version of the client is compatible with the same major version of Elasticsearch. diff --git a/docs/source/conf.py b/docs/source/conf.py index acc3f52..78c7775 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -110,3 +110,5 @@ html_theme = "pandas_sphinx_theme" html_logo = "logo/eland.png" html_favicon = "logo/eland_favicon.png" + +master_doc = 'index' diff --git a/eland/__version__.py b/eland/__version__.py index c027662..476b73c 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__ = '0.1a1' +__version__ = '7.x' __maintainer__ = 'Elasticsearch B.V.' __maintainer_email__ = 'steve.dodson@elastic.co'