Skip to content

Commit 0d8bc1a

Browse files
Add Laravel Scout 5.0 compatibility
1 parent df18f6d commit 0d8bc1a

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.0.1
4+
5+
* Add compatibility with Laravel Scout 5.0
6+
37
## 2.0.0
48

59
* Better message in console
@@ -13,16 +17,16 @@
1317
use a different prefix, you weren't able to do this.
1418
In case you want to keep the behavior like in v1, pass the `--prefix` option
1519
to the 2 commands.
16-
20+
1721
See [issue #14](https://github.com/algolia/laravel-scout-settings/issues/14)
18-
22+
1923
* Introduce new IndexResourceRepository service class
20-
24+
2125
This service allows you to read and write files with your settings,
2226
synonyms, rules via simple methods. This class doesn't interact with
2327
Algolia's API but with files in your `resources` folder.
2428
Thanks @qrazi
25-
29+
2630

2731
### 1.0.1
2832

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"type": "library",
1010
"minimum-stability": "stable",
1111
"require": {
12-
"laravel/scout": "^3.0 || ^4.0",
12+
"laravel/scout": ">=3.0",
1313
"algolia/algoliasearch-client-php": "^1.25"
1414
},
1515
"autoload": {

src/ServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
final class ServiceProvider extends LaravelServiceProvider
1414
{
15-
const VERSION = '2.0.0';
15+
const VERSION = '2.0.1';
1616

1717
public function boot()
1818
{

0 commit comments

Comments
 (0)