Skip to content

Commit 46fb344

Browse files
authored
Release v7.2.0
1 parent ab787b4 commit 46fb344

File tree

4 files changed

+25
-6
lines changed

4 files changed

+25
-6
lines changed

Changelog.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
Changelog
44
=========
55

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+
622
7.1.0 (2019-10-23)
723
------------------
824

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 DSL'
46-
copyright = u'2014, Honza Král'
47+
copyright = u'%d, Elasticsearch B.V' % datetime.datetime.now().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

elasticsearch_dsl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
from .faceted_search import *
1212
from .wrappers import *
1313

14-
VERSION = (7, 1, 0)
14+
VERSION = (7, 2, 0)
1515
__version__ = VERSION
1616
__versionstr__ = '.'.join(map(str, VERSION))

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from os.path import join, dirname
33
from setuptools import setup, find_packages
44

5-
VERSION = (7, 1, 0)
5+
VERSION = (7, 2, 0)
66
__version__ = VERSION
77
__versionstr__ = '.'.join(map(str, VERSION))
88

@@ -14,7 +14,7 @@
1414
'six',
1515
'python-dateutil',
1616
'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
1818
'ipaddress; python_version<"3.3"'
1919
]
2020

@@ -30,12 +30,14 @@
3030
setup(
3131
name = "elasticsearch-dsl",
3232
description = "Python client for Elasticsearch",
33-
license="Apache License, Version 2.0",
33+
license="Apache-2.0",
3434
url = "https://github.com/elasticsearch/elasticsearch-dsl-py",
3535
long_description = long_description,
3636
version = __versionstr__,
3737
author = "Honza Král",
3838
author_email = "[email protected]",
39+
maintainer = "Seth Michael Larson",
40+
maintainer_email = "[email protected]",
3941
packages=find_packages(
4042
where='.',
4143
exclude=('test_elasticsearch_dsl*', )

0 commit comments

Comments
 (0)