From 426d0d7863eec6b036df46003d0f467cf982e9cd Mon Sep 17 00:00:00 2001 From: Petr Jasek Date: Mon, 3 Aug 2020 10:28:26 +0200 Subject: [PATCH] release 7.1.0 --- CHANGELOG.rst | 6 ++++++ eve_elastic/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f4249b8..db40580 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,12 @@ Changelog --------- +7.1.0 (2020-08-03) +++++++++++++++++++ + +- add config to control total hits `ELASTICSEARCH_TRACK_TOTAL_HITS` +- make it possible to override `doc_type` on insert (by Luis Fernando Gomes) + 7.0.8 (2020-07-28) ++++++++++++++++++ diff --git a/eve_elastic/__init__.py b/eve_elastic/__init__.py index 2ec6609..f82f3cb 100644 --- a/eve_elastic/__init__.py +++ b/eve_elastic/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = "7.0.7" +__version__ = "7.1.0" # flake8: noqa from .elastic import ( diff --git a/setup.py b/setup.py index d89ba05..157cd1f 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="Eve-Elastic", - version="7.0.8", + version="7.1.0", description="Elasticsearch data layer for eve rest framework", long_description=readme + "\n\n" + changelog, license="GPLv3+",