Skip to content

Commit 01a522b

Browse files
committed
Removed support for PHP 7.2 due to incompatibility.
1 parent f9be69e commit 01a522b

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

.github/workflows/laravel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
php: ['^7.2.5', 7.3, 7.4]
17+
php: [7.3, 7.4]
1818

1919
name: PHP ${{ matrix.php }}
2020

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [0.9.0] - 2020-07-17
8+
### Removed
9+
- support for PHP 7.2 due to incompatibility.
10+
11+
## [0.8.10] - 2020-07-08
12+
### Fixed
13+
- update and insert methods when called on cached relations.
14+
15+
## [0.8.9] - 2020-07-03
16+
### Added
17+
- changes meant for 0.8.8 that were inadvertently not committed.
18+
719
## [0.8.8] - 2020-07-02
820
### Fixed
921
- return type of `applyScopes` to match parent class.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ It will not work with non-taggable drivers:
4242
```
4343

4444
## Requirements
45-
- Laravel 7.0+
45+
- PHP 7.3+
46+
- Laravel 7.0+
4647
```diff
4748
- Please note that prior Laravel versions are not supported and the package
4849
- versions that are compatible with prior versions of Laravel contain bugs.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616
],
1717
"require": {
18-
"php": ">=7.2.5",
18+
"php": ">=7.3",
1919
"genealabs/laravel-pivot-events": "^0.3.0",
2020
"illuminate/cache": "^7.0",
2121
"illuminate/config": "^7.0",

0 commit comments

Comments
 (0)