File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 33Changelog
44=========
55
6+ 6.8.1 (2020-03-31)
7+ ------------------
8+ * Added support for serializing ``numpy `` and ``pandas ``
9+ data types to ``JSONSerializer ``. (See `#1180 `_)
10+ * Fixed a namespace conflict in ``elasticsearch6 `` wheel
11+ distribution for ``v6.8.0 `` (See `#1186 `_)
12+
13+ .. _#1180 : https://github.com/elastic/elasticsearch-py/issues/1180
14+ .. _#1186 : https://github.com/elastic/elasticsearch-py/issues/1186
15+
6166.8.0 (2020-03-12)
717-----------
818 * Added support for HTTP compression to ``RequestsHttpConnection ``
Original file line number Diff line number Diff line change 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
4344
4445# General information about the project.
4546project = 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
Original file line number Diff line number Diff line change 11# flake8: noqa
22from __future__ import absolute_import
33
4- VERSION = (6 , 8 , 0 )
4+ VERSION = (6 , 8 , 1 )
55__version__ = VERSION
66__versionstr__ = "." .join (map (str , VERSION ))
77
Original file line number Diff line number Diff line change 33from setuptools import setup , find_packages
44import sys
55
6- VERSION = (6 , 8 , 0 )
6+ VERSION = (6 , 8 , 1 )
77__version__ = VERSION
88__versionstr__ = "." .join (map (str , VERSION ))
99
You can’t perform that action at this time.
0 commit comments