From 1534b7060f70f82ceade6b50db2e8a9ac8b5869f Mon Sep 17 00:00:00 2001 From: Devin Beeuwkes Date: Thu, 24 Feb 2022 11:12:58 +0100 Subject: [PATCH] chore: bumps version to v2.0.2 --- CHANGELOG.md | 5 +++++ src/Managers/EngineManager.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d299c4..e56641e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [2.0.2](https://github.com/algolia/scout-extended/compare/v2.0.1...v2.0.2) - 2022-02-24 +### Fixed +- Fixed bug where queued aggregator deletes failed ([#287](https://github.com/algolia/scout-extended/pull/287)) + + ## [2.0.1](https://github.com/algolia/scout-extended/compare/v2.0.0...v2.0.1) - 2022-01-31 ### Fixed - Fix potential race condition when reimporting large number of records ([#300](https://github.com/algolia/scout-extended/pull/300)) diff --git a/src/Managers/EngineManager.php b/src/Managers/EngineManager.php index 11bcdec..c9133d7 100644 --- a/src/Managers/EngineManager.php +++ b/src/Managers/EngineManager.php @@ -27,7 +27,7 @@ class EngineManager extends BaseEngineManager */ public function createAlgoliaDriver(): AlgoliaEngine { - UserAgent::addCustomUserAgent('Laravel Scout Extended', '2.0.1'); + UserAgent::addCustomUserAgent('Laravel Scout Extended', '2.0.2'); return new AlgoliaEngine(SearchClient::create(config('scout.algolia.id'), config('scout.algolia.secret'))); }