From a05baf844146ccbcc7343cd1e1038b10188b6da1 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 30 Mar 2022 14:17:40 +0200 Subject: [PATCH] Prep for 8.0.1 --- CHANGELOG.md | 9 +++++++++ src/Client.php | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9942ebbe8..f498477bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## Release 8.0.1 + +- Fixed `NoNodeAvailableException` exception in endpoints + [e7d448d](https://github.com/elastic/elasticsearch-php/commit/e7d448d540f120eb3a3e3fe0d5866bf62fb67f3a) + +## Release 8.0.0 + +- Finally released 8.0.0 GA. + ## Release 8.0.0-rc2 - Added the common parameters in all the endpoints diff --git a/src/Client.php b/src/Client.php index 07caef35b..5daa4770d 100644 --- a/src/Client.php +++ b/src/Client.php @@ -28,7 +28,7 @@ final class Client { const CLIENT_NAME = 'es'; - const VERSION = '8.0.0'; + const VERSION = '8.0.1'; use ClientEndpointsTrait; use EndpointTrait;