Skip to content

Commit 07bb2c7

Browse files
authored
Release 7.6.0
1 parent 7b6a12f commit 07bb2c7

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Changelog
44
=========
55

6-
7.6.0a1 (2020-03-16)
6+
7.6.0 (2020-03-19)
77
------------------
88
* Added support for ES 7.6 APIs
99
* Added support for `X-Opaque-Id`_ to identify long-running tasks

docs/conf.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
# All configuration values have a default; values that are commented out
1212
# serve to show the default.
1313

14-
import sys, os
14+
import os
15+
import datetime
1516

1617
# If extensions (or modules to document with autodoc) are in another directory,
1718
# add these directories to sys.path here. If the directory is relative to the
@@ -43,7 +44,7 @@
4344

4445
# General information about the project.
4546
project = u"Elasticsearch"
46-
copyright = u"2013, Honza Král"
47+
copyright = u"%d, Elasticsearch B.V" % datetime.date.today().year
4748

4849
# The version info for the project you're documenting, acts as replacement for
4950
# |version| and |release|, also used in various other places throughout the

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
VERSION = (7, 6, 0)
77
__version__ = VERSION
8-
__versionstr__ = "7.6.0a1"
8+
__versionstr__ = "7.6.0"
99

1010
with open(join(dirname(__file__), "README")) as f:
1111
long_description = f.read().strip()

0 commit comments

Comments
 (0)