Skip to content

Commit

Permalink
Increase supported uuid version range
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhnroyal committed Oct 30, 2023
1 parent 87b2a18 commit 6036775
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2.0.5
* Increase supported `uuid` version range

## 2.0.4
* Fix crashes in release mode when using new flutterCompute method
* Migrate Android jCenter to Maven Central
Expand Down
2 changes: 1 addition & 1 deletion lib/flutter_isolate.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class FlutterIsolate {
void entryPoint(T message), T message) async {
final userEntryPointId =
PluginUtilities.getCallbackHandle(entryPoint)!.toRawHandle();
final isolateId = Uuid().v4();
final isolateId = const Uuid().v4();
final isolateResult = Completer<FlutterIsolate>();
final setupReceivePort = ReceivePort();

Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_isolate
description: FlutterIsolate provides a way to launch dart isolate in flutter that work with flutter plugins.
version: 2.0.4
version: 2.0.5
homepage: https://github.com/rmawatson/flutter_isolate

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

Expand Down

0 comments on commit 6036775

Please sign in to comment.