Skip to content

Commit ef3973b

Browse files
committed
chore: release to 6.3.0
1 parent 3b98489 commit ef3973b

2 files changed

Lines changed: 36 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
## 6.3.0
2+
3+
* Documented support for using `--` to pass arguments to the Dart compiler.
4+
* Update the workflows to compatible with `isolate_manager_generator` `^0.4.0`.
5+
* Bump the dart analyzer to `^10.2.0`.
6+
* Note for `isolate_manager_generator` `^0.4.0`:
7+
* BREAKING CHANGE: Removed `--omit-implicit-checks` option.
8+
Before (the option is added automatically):
9+
10+
```dart
11+
dart run isolate_manager_generator
12+
```
13+
14+
After (the option is added manually):
15+
16+
```dart
17+
dart run isolate_manager_generator -- --omit-implicit-checks
18+
```
19+
20+
* BREAKING CHANGE: Removed unused source map generation and cleanup logic.
21+
Before (the option is added automatically):
22+
23+
```dart
24+
dart run isolate_manager_generator
25+
```
26+
27+
After (the option is added manually):
28+
29+
```dart
30+
dart run isolate_manager_generator -- --no-source-maps
31+
```
32+
33+
* BREAKING CHANGE: The `js.deps` files are no longer removed automatically, and there is no helper available for this change.
34+
* Bump the dart analyzer to `^10.0.0`.
35+
136
## 6.2.0
237
338
* Add cross-platform transferables support (fixes [#56](https://github.com/lamnhan066/isolate_manager/issues/56), thanks to @kartikey321).

pubspec.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: isolate_manager
22
description: Create long-lived isolates for single or multiple functions, with support for Web Workers (via an efficient generator) and WASM compilation.
3-
version: 6.2.0
3+
version: 6.3.0
44
homepage: https://github.com/lamnhan066/isolate_manager/
55

66
topics:
@@ -19,6 +19,5 @@ dependencies:
1919

2020
dev_dependencies:
2121
coverage: ^1.10.0
22-
isolate_manager_generator: ^0.4.0
2322
test: ^1.25.8
2423
very_good_analysis: ^10.2.0

0 commit comments

Comments
 (0)