From 646b21482bb16092258c9412fe48526763774719 Mon Sep 17 00:00:00 2001 From: Marcos Cardoso Date: Sun, 10 May 2020 10:54:00 -0300 Subject: [PATCH] Bump version '1.5.1' --- Makefile | 2 +- README.md | 3 +++ setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 121fa0b..99cfdf6 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -ELASTICMOCK_VERSION='1.5.0' +ELASTICMOCK_VERSION='1.5.1' install: @pip install -r requirements.txt diff --git a/README.md b/README.md index d953072..a1bb79d 100644 --- a/README.md +++ b/README.md @@ -177,6 +177,9 @@ python setup.py test ## Changelog +#### 1.5.1: +- [Fix tests for es > 7](https://github.com/vrcmarcos/elasticmock/pull/38) (Thanks [@chesstrian](https://github.com/chesstrian)) + #### 1.5.0: - [**FakeElasticSearch**: Mocked **indices** property](https://github.com/vrcmarcos/elasticmock/issues/22) - **FakeIndicesClient**: Mocked **create**, **exists**, **refresh** and **delete** methods diff --git a/setup.py b/setup.py index ab2a0e3..72cb368 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import setuptools -__version__ = '1.5.0' +__version__ = '1.5.1' # read the contents of your readme file from os import path