File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 2.0.5
2
+ * Increase supported ` uuid ` version range
3
+
1
4
## 2.0.4
2
5
* Fix crashes in release mode when using new flutterCompute method
3
6
* Migrate Android jCenter to Maven Central
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class FlutterIsolate {
26
26
void entryPoint (T message), T message) async {
27
27
final userEntryPointId =
28
28
PluginUtilities .getCallbackHandle (entryPoint)! .toRawHandle ();
29
- final isolateId = Uuid ().v4 ();
29
+ final isolateId = const Uuid ().v4 ();
30
30
final isolateResult = Completer <FlutterIsolate >();
31
31
final setupReceivePort = ReceivePort ();
32
32
Original file line number Diff line number Diff line change 1
1
name : flutter_isolate
2
2
description : FlutterIsolate provides a way to launch dart isolate in flutter that work with flutter plugins.
3
- version : 2.0.4
3
+ version : 2.0.5
4
4
homepage : https://github.com/rmawatson/flutter_isolate
5
5
6
6
environment :
@@ -10,7 +10,7 @@ environment:
10
10
dependencies :
11
11
flutter :
12
12
sdk : flutter
13
- uuid : ^ 3.0.3
13
+ uuid : " >= 3.0.3 <5.0.0 "
14
14
# For information on the generic Dart part of this file, see the
15
15
# following page: https://www.dartlang.org/tools/pub/pubspec
16
16
You can’t perform that action at this time.
0 commit comments