Skip to content

Commit 0ed99ee

Browse files
authored
Merge pull request rappasoft#653 from rappasoft/develop
Develop
2 parents 6de8a14 + 18d096d commit 0ed99ee

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,20 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
12-
php: [8.0, 7.4]
13-
laravel: [8.*]
12+
php: [8.1, 8.0, 7.4]
13+
laravel: [8.*, 9.*]
1414
stability: [prefer-lowest, prefer-stable]
1515
include:
16+
- laravel: 9.*
17+
testbench: 7.*
1618
- laravel: 8.*
1719
testbench: 6.*
20+
exclude:
21+
- laravel: 9.*
22+
php: 7.4
23+
- laravel: 8.*
24+
php: 8.1
25+
stability: prefer-lowest
1826

1927
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2028

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
44

55
## [Unreleased]
66

7+
## [1.23.0] - 2022-02-11
8+
9+
### Added
10+
11+
- Laravel 9 Support
12+
713
## [1.22.0] - 2022-01-20
814

915
### Added
@@ -590,7 +596,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
590596

591597
- Initial release
592598

593-
[unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.22.0...development
599+
[unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.23.0...development
600+
[1.23.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.22.0...v1.23.0
594601
[1.22.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.21.0...v1.22.0
595602
[1.21.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.20.1...v1.21.0
596603
[1.20.1]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.20.0...v1.20.1

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
"php": "^7.4|^8.0",
2222
"livewire/livewire": "^2.6",
2323
"spatie/laravel-package-tools": "^1.4.3",
24-
"illuminate/contracts": "^8.0"
24+
"illuminate/contracts": "^8.0|^9.0"
2525
},
2626
"require-dev": {
2727
"ext-sqlite3": "*",
28-
"orchestra/testbench": "^6.13",
28+
"orchestra/testbench": "^6.13|^7.0",
2929
"phpunit/phpunit": "^9.3",
3030
"spatie/laravel-ray": "^1.9",
3131
"vimeo/psalm": "^4.4"

0 commit comments

Comments
 (0)