Skip to content

Commit 6036775

Browse files
committed
Increase supported uuid version range
1 parent 87b2a18 commit 6036775

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 2.0.5
2+
* Increase supported `uuid` version range
3+
14
## 2.0.4
25
* Fix crashes in release mode when using new flutterCompute method
36
* Migrate Android jCenter to Maven Central

lib/flutter_isolate.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class FlutterIsolate {
2626
void entryPoint(T message), T message) async {
2727
final userEntryPointId =
2828
PluginUtilities.getCallbackHandle(entryPoint)!.toRawHandle();
29-
final isolateId = Uuid().v4();
29+
final isolateId = const Uuid().v4();
3030
final isolateResult = Completer<FlutterIsolate>();
3131
final setupReceivePort = ReceivePort();
3232

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_isolate
22
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
44
homepage: https://github.com/rmawatson/flutter_isolate
55

66
environment:
@@ -10,7 +10,7 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
uuid: ^3.0.3
13+
uuid: ">=3.0.3 <5.0.0"
1414
# For information on the generic Dart part of this file, see the
1515
# following page: https://www.dartlang.org/tools/pub/pubspec
1616

0 commit comments

Comments
 (0)