Skip to content

Commit 12b1ff5

Browse files
Reinstate support for Scout 7 (#41)
1 parent 9e3995e commit 12b1ff5

File tree

4 files changed

+13
-17
lines changed

4 files changed

+13
-17
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,14 @@ jobs:
1515
matrix:
1616
php: [7.2, 7.3, 7.4]
1717
laravel: [^6.0, ^7.0, ^8.0]
18+
scout: [^7.0, ^8.0]
1819
exclude:
1920
- php: 7.2
2021
laravel: ^8.0
22+
- laravel: ^8.0
23+
scout: ^7.0
2124

22-
name: Test with PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
25+
name: Test PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - Scout ${{ matrix.scout }}
2326

2427
steps:
2528
- name: Checkout code
@@ -38,6 +41,7 @@ jobs:
3841
composer require "illuminate/contracts=${{ matrix.laravel }}" --no-update
3942
composer require "illuminate/database=${{ matrix.laravel }}" --no-update
4043
composer require "illuminate/support=${{ matrix.laravel }}" --no-update
44+
composer require "laravel/scout=${{ matrix.scout }}" --no-update
4145
composer update --prefer-dist --no-interaction --no-progress
4246
4347
- name: Run tests

CHANGELOG.md

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

3+
## [7.2.0](https://github.com/pmatseykanets/laravel-scout-postgres/releases/tag/v7.2.0) - 2020-09-24
4+
5+
### Changed
6+
7+
- Reinstated support for Scout 7
8+
39
## [7.1.0](https://github.com/pmatseykanets/laravel-scout-postgres/releases/tag/v7.1.0) - 2020-09-14
410

511
### Added

README.md

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,8 @@ This package makes it easy to use native PostgreSQL Full Text Search capabilitie
3232

3333
You can install the package via composer:
3434

35-
**Scout 8**
36-
37-
``` bash
38-
composer require pmatseykanets/laravel-scout-postgres:7
39-
```
40-
41-
For Laravel 8 support use `7.1` an up.
42-
43-
``` bash
44-
composer require pmatseykanets/laravel-scout-postgres:7.1
45-
```
46-
47-
**Scout 7**
48-
4935
``` bash
50-
composer require pmatseykanets/laravel-scout-postgres:5
36+
composer require pmatseykanets/laravel-scout-postgres
5137
```
5238

5339
### Laravel

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"illuminate/contracts": "~6.0|~7.0|~8.0",
2828
"illuminate/database": "~6.0|~7.0|~8.0",
2929
"illuminate/support": "~6.0|~7.0|~8.0",
30-
"laravel/scout": "~8.0"
30+
"laravel/scout": "~7.0|~8.0"
3131
},
3232
"require-dev": {
3333
"phpunit/phpunit": "^8.3",

0 commit comments

Comments
 (0)