Skip to content

Commit 440e67b

Browse files
committed
Merge remote-tracking branch 'origin/main' into optimize_int64
2 parents 1f32d44 + 1aa58ef commit 440e67b

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.github/workflows/fixnum.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
sdk: [3.1.0, dev]
31+
sdk: [3.4.4, dev]
3232
steps:
3333
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
3434
- uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c
@@ -55,7 +55,7 @@ jobs:
5555
matrix:
5656
# Add macos-latest and/or windows-latest if relevant for this package.
5757
os: [ubuntu-latest]
58-
sdk: [3.1.0, dev]
58+
sdk: [3.4.4, dev]
5959
steps:
6060
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
6161
- uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c
@@ -67,6 +67,9 @@ jobs:
6767
- name: Run VM tests
6868
run: dart test --platform vm
6969
if: always() && steps.install.outcome == 'success'
70-
- name: Run Chrome tests
71-
run: dart test --platform chrome
70+
- name: Run JS tests
71+
run: dart test --platform chrome --compiler dart2js
72+
if: always() && steps.install.outcome == 'success'
73+
- name: Run Wasm tests
74+
run: dart test --platform chrome --compiler dart2wasm
7275
if: always() && steps.install.outcome == 'success'

pkgs/fixnum/CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
## 1.2.0-wip
22

3-
- Change `IntX` such that it implements `Comparable<IntX>`. This makes it
3+
* Change `IntX` such that it implements `Comparable<IntX>`. This makes it
44
possible for `IntX` (and in turn `Int64` and `Int32`) be used with methods
55
like `sortedBy` in the platform libraries.
6-
- Run `dart format` with the new style.
7-
- Improve `Int64` representation when compiling to native or Wasm.
6+
* Run `dart format` with the new style.
7+
* Require Dart 3.4
8+
* Improve `Int64` representation when compiling to native or Wasm.
89

910
## 1.1.1
1011

pkgs/fixnum/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repository: https://github.com/dart-lang/core/tree/main/pkgs/fixnum
77
issue_tracker: https://github.com/dart-lang/core/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Afixnum
88

99
environment:
10-
sdk: ^3.1.0
10+
sdk: ^3.4.0
1111

1212
dev_dependencies:
1313
dart_flutter_team_lints: ^3.0.0

0 commit comments

Comments
 (0)