Skip to content

Commit 39066a6

Browse files
authored
Merge pull request #224 from ilteoood/fix/223
Fix/223
2 parents 67cde8f + bf6c504 commit 39066a6

File tree

9 files changed

+165
-92
lines changed

9 files changed

+165
-92
lines changed

.github/workflows/flutter-drive-android.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Flutter drive Android
22
on: push
33
jobs:
44
drive_android:
5-
runs-on: macos-latest
5+
runs-on: ubuntu-latest
66
strategy:
77
matrix:
88
api-level: [21, 29, 31]
@@ -13,6 +13,11 @@ jobs:
1313
- uses: subosito/flutter-action@v2
1414
with:
1515
channel: stable
16+
- name: Enable KVM group perms
17+
run: |
18+
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
19+
sudo udevadm control --reload-rules
20+
sudo udevadm trigger --name-match=kvm
1621
- name: Run Flutter Driver basic tests
1722
uses: reactivecircus/android-emulator-runner@v2
1823
with:

.github/workflows/flutter-drive-ios.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ jobs:
55
strategy:
66
matrix:
77
device:
8-
- "iPhone 8"
9-
- "iPhone 11 Pro Max"
10-
- "iPhone 13 Pro Max"
8+
- "iPhone 15"
9+
- "iPhone 15 Plus"
10+
- "iPhone 15 Pro"
11+
- "iPhone 15 Pro Max"
1112
fail-fast: true
1213
runs-on: macos-latest
1314
steps:

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,4 +288,7 @@ Upgrade intl@0.18.1, xml2json@6.2.2, toml@0.15.0, http@1.1.2
288288
Fix: deprecation warnings
289289

290290
## [0.35.1]
291-
Change intl version to '>=0.17.0-0 <=0.19.0'
291+
Change intl version to '>=0.17.0-0 <=0.19.0'
292+
293+
## [0.36.0]
294+
Ability to define custom separator

0 commit comments

Comments
 (0)