File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
6
- 7.6.0a1 (2020-03-16 )
6
+ 7.6.0 (2020-03-19 )
7
7
------------------
8
8
* Added support for ES 7.6 APIs
9
9
* Added support for `X-Opaque-Id `_ to identify long-running tasks
Original file line number Diff line number Diff line change 11
11
# All configuration values have a default; values that are commented out
12
12
# serve to show the default.
13
13
14
- import sys , os
14
+ import os
15
+ import datetime
15
16
16
17
# If extensions (or modules to document with autodoc) are in another directory,
17
18
# add these directories to sys.path here. If the directory is relative to the
43
44
44
45
# General information about the project.
45
46
project = u"Elasticsearch"
46
- copyright = u"2013, Honza Král"
47
+ copyright = u"%d, Elasticsearch B.V" % datetime . date . today (). year
47
48
48
49
# The version info for the project you're documenting, acts as replacement for
49
50
# |version| and |release|, also used in various other places throughout the
Original file line number Diff line number Diff line change 5
5
6
6
VERSION = (7 , 6 , 0 )
7
7
__version__ = VERSION
8
- __versionstr__ = "7.6.0a1 "
8
+ __versionstr__ = "7.6.0 "
9
9
10
10
with open (join (dirname (__file__ ), "README" )) as f :
11
11
long_description = f .read ().strip ()
You can’t perform that action at this time.
0 commit comments