File tree Expand file tree Collapse file tree 4 files changed +25
-6
lines changed Expand file tree Collapse file tree 4 files changed +25
-6
lines changed Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
6
+ 7.2.0 (2020-05-04)
7
+ ------------------
8
+
9
+ * Added support for ``geotile_grid `` aggregation (`#1350 `_, contributed by `@owrcasstevens `_)
10
+ * Added the ``DenseVector `` and ``SparseVector `` data types (`#1278 `_)
11
+ * Added the ``SearchAsYouType `` field (`#1295 `_, contributed by `@dpasqualin `_)
12
+ * Fixed name of ``DoubleRange `` (`#1272 `_, contributed by `@braunsonm `_)
13
+
14
+ .. _@braunsonm : https://github.com/braunsonm
15
+ .. _@dpasqualin : https://github.com/dpasqualin
16
+ .. _@owrcasstevens : https://github.com/owrcasstevens
17
+ .. _#1272 : https://github.com/elastic/elasticsearch-dsl-py/pull/1272
18
+ .. _#1278 : https://github.com/elastic/elasticsearch-dsl-py/issues/1278
19
+ .. _#1295 : https://github.com/elastic/elasticsearch-dsl-py/pull/1295
20
+ .. _#1350 : https://github.com/elastic/elasticsearch-dsl-py/pull/1350
21
+
6
22
7.1.0 (2019-10-23)
7
23
------------------
8
24
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 DSL'
46
- copyright = u'2014, Honza Král'
47
+ copyright = u'%d, Elasticsearch B.V' % datetime . datetime . now (). 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 11
11
from .faceted_search import *
12
12
from .wrappers import *
13
13
14
- VERSION = (7 , 1 , 0 )
14
+ VERSION = (7 , 2 , 0 )
15
15
__version__ = VERSION
16
16
__versionstr__ = '.' .join (map (str , VERSION ))
Original file line number Diff line number Diff line change 2
2
from os .path import join , dirname
3
3
from setuptools import setup , find_packages
4
4
5
- VERSION = (7 , 1 , 0 )
5
+ VERSION = (7 , 2 , 0 )
6
6
__version__ = VERSION
7
7
__versionstr__ = '.' .join (map (str , VERSION ))
8
8
14
14
'six' ,
15
15
'python-dateutil' ,
16
16
'elasticsearch>=7.0.0,<8.0.0' ,
17
- # ipaddress is included in stdlib sincxe py 3.3
17
+ # ipaddress is included in stdlib since python 3.3
18
18
'ipaddress; python_version<"3.3"'
19
19
]
20
20
30
30
setup (
31
31
name = "elasticsearch-dsl" ,
32
32
description = "Python client for Elasticsearch" ,
33
- license = "Apache License, Version 2.0" ,
33
+ license = "Apache- 2.0" ,
34
34
url = "https://github.com/elasticsearch/elasticsearch-dsl-py" ,
35
35
long_description = long_description ,
36
36
version = __versionstr__ ,
37
37
author = "Honza Král" ,
38
38
author_email = "[email protected] " ,
39
+ maintainer = "Seth Michael Larson" ,
40
+ maintainer_email = "[email protected] " ,
39
41
packages = find_packages (
40
42
where = '.' ,
41
43
exclude = ('test_elasticsearch_dsl*' , )
You can’t perform that action at this time.
0 commit comments