Release 7.6.0
This commit is contained in:
+1
-1
@@ -3,7 +3,7 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
7.6.0a1 (2020-03-16)
|
7.6.0 (2020-03-19)
|
||||||
------------------
|
------------------
|
||||||
* Added support for ES 7.6 APIs
|
* Added support for ES 7.6 APIs
|
||||||
* Added support for `X-Opaque-Id`_ to identify long-running tasks
|
* Added support for `X-Opaque-Id`_ to identify long-running tasks
|
||||||
|
|||||||
+3
-2
@@ -11,7 +11,8 @@
|
|||||||
# All configuration values have a default; values that are commented out
|
# All configuration values have a default; values that are commented out
|
||||||
# serve to show the default.
|
# serve to show the default.
|
||||||
|
|
||||||
import sys, os
|
import os
|
||||||
|
import datetime
|
||||||
|
|
||||||
# If extensions (or modules to document with autodoc) are in another directory,
|
# If extensions (or modules to document with autodoc) are in another directory,
|
||||||
# add these directories to sys.path here. If the directory is relative to the
|
# add these directories to sys.path here. If the directory is relative to the
|
||||||
@@ -43,7 +44,7 @@ master_doc = "index"
|
|||||||
|
|
||||||
# General information about the project.
|
# General information about the project.
|
||||||
project = u"Elasticsearch"
|
project = u"Elasticsearch"
|
||||||
copyright = u"2013, Honza Král"
|
copyright = u"%d, Elasticsearch B.V" % datetime.date.today().year
|
||||||
|
|
||||||
# The version info for the project you're documenting, acts as replacement for
|
# The version info for the project you're documenting, acts as replacement for
|
||||||
# |version| and |release|, also used in various other places throughout the
|
# |version| and |release|, also used in various other places throughout the
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import sys
|
|||||||
|
|
||||||
VERSION = (7, 6, 0)
|
VERSION = (7, 6, 0)
|
||||||
__version__ = VERSION
|
__version__ = VERSION
|
||||||
__versionstr__ = "7.6.0a1"
|
__versionstr__ = "7.6.0"
|
||||||
|
|
||||||
with open(join(dirname(__file__), "README")) as f:
|
with open(join(dirname(__file__), "README")) as f:
|
||||||
long_description = f.read().strip()
|
long_description = f.read().strip()
|
||||||
|
|||||||
Reference in New Issue
Block a user