diff --git a/CHANGELOG.md b/CHANGELOG.md index 147b51309..6796039d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## Release 7.1.1 + +- Fixed `ClientBuilder::setSSLVerification()` to accept string or boolean + [#917](https://github.com/elastic/elasticsearch-php/pull/917) +- Fix type hinting for `setBody` in `Elasticsearch\Endpoints\Ingest\Pipeline\Put` + [#913](https://github.com/elastic/elasticsearch-php/pull/913) + ## Release 7.1.0 - Added warning log for Elasticsearch response containing the `Warning` header diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index 0bda4535f..2af8f0e99 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -34,7 +34,7 @@ */ class Client { - const VERSION = '7.1.0'; + const VERSION = '7.1.1'; /** * @var Transport