From c72f03242b4a099715d2db789fda686d903c7559 Mon Sep 17 00:00:00 2001 From: Devin Beeuwkes <46448173+DevinCodes@users.noreply.github.com> Date: Mon, 26 Feb 2024 10:08:26 +0100 Subject: [PATCH] chore: bump version to v3.0.1 --- CHANGELOG.md | 6 +++++- src/Managers/EngineManager.php | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e77dcb..4f6581e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -## [3.0.0](https://github.com/algolia/scout-extended/compare/v2.1.0...v3.0.0) - 2022-02-06 +## [3.0.1](https://github.com/algolia/scout-extended/compare/v3.0.0...v3.0.1) - 2024-02-26 +### Added +- Add configuration option to not use `deleteBy` ([#334](https://github.com/algolia/scout-extended/pull/334)) + +## [3.0.0](https://github.com/algolia/scout-extended/compare/v2.1.0...v3.0.0) - 2023-02-06 ### Added - Laravel 10 support ([#320](https://github.com/algolia/scout-extended/pull/320)) diff --git a/src/Managers/EngineManager.php b/src/Managers/EngineManager.php index c305812..e325870 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', '3.0.0'); + UserAgent::addCustomUserAgent('Laravel Scout Extended', '3.0.1'); return new AlgoliaEngine(SearchClient::create(config('scout.algolia.id'), config('scout.algolia.secret'))); }