Skip to content

Commit a391563

Browse files
committed
v0.8.0
1 parent 9634dd8 commit a391563

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: run-tests
22

33
on:
4-
push:
5-
branches: [main]
6-
pull_request:
7-
branches: [main]
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
88

99
jobs:
1010
test:
@@ -14,13 +14,15 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
php: [8.4, 8.3, 8.2]
17-
laravel: ['11.*', '12.*']
17+
laravel: ['11.*', '12.*', '13.*']
1818
dependency-version: [prefer-lowest, prefer-stable]
1919
include:
2020
- laravel: 11.*
2121
testbench: 9.*
2222
- laravel: 12.*
2323
testbench: 10.*
24+
- laravel: 13.*
25+
testbench: 11.*
2426

2527
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2628

CHANGELOG.md

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

33
All notable changes to `bs-blade-forms` will be documented in this file
44

5+
## 0.8.0 - 2026-04-07
6+
7+
- feat: Select class can be customized from the config file
8+
- chore: Support for Laravel 13
9+
510
## 0.7.1 - 2026-02-24
611

712
- fix: english translations

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"tiknil",
66
"bs-blade-forms"
77
],
8-
"version": "0.7.1",
8+
"version": "0.8.0",
99
"homepage": "https://github.com/tiknil/bs-blade-forms",
1010
"license": "MIT",
1111
"type": "library",
@@ -17,14 +17,14 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^8.1|^8.2|^8.3|^8.4",
21-
"illuminate/support": "^10.0|^11.0|^12.0",
22-
"illuminate/contracts": "^10.0|^11.0|^12.0"
20+
"php": "^8.1|^8.2|^8.3|^8.4|^9.5",
21+
"illuminate/support": "^10.0|^11.0|^12.0|^13.0",
22+
"illuminate/contracts": "^10.0|^11.0|^12.0|^13.0"
2323
},
2424
"require-dev": {
2525
"laravel/pint": "^1.7",
2626
"mockery/mockery": "^1.6",
27-
"orchestra/testbench": "^9.0|^10.0",
27+
"orchestra/testbench": "^9.0|^10.0|^11.0",
2828
"pestphp/pest": "^3.0",
2929
"pestphp/pest-plugin-laravel": "^3.0"
3030
},

0 commit comments

Comments
 (0)