Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
Released 0.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsutton committed Jul 31, 2024
1 parent e54c311 commit 8d596a0
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.4.0
- Made the TimeoutException messages more consistent. Fixed a lint for Timeout Test
Note: the Mutex timeout is ignored on Windows.

## 0.3.0
Added a timeout to the Mailbox.take, Mutex.runLocked and ConditionVariable.wait methods.

Expand Down
3 changes: 3 additions & 0 deletions lib/src/version/version.g.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/// GENERATED BY pub_release do not modify.
/// Instance of 'Name' version
String packageVersion = '0.4.0';
11 changes: 8 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: native_synchronization
description: Low level synchronization primitives built on dart:ffi.
version: 0.3.0
name: native_synchronization_temp
description: |
Low level synchronization primitives built on dart:ffi.
This variant is a place holder until PR 2 is merged
https: //github.com/dart-lang/native_synchronization/pull/27/commits
version: 0.4.0
repository: https://github.com/dart-lang/native_synchronization

environment:
Expand All @@ -12,3 +16,4 @@ dependencies:
dev_dependencies:
dart_flutter_team_lints: ^1.0.0
test: ^1.16.0
publish_to: https://onepub.dev/api/jbbxpsdavu/
4 changes: 2 additions & 2 deletions test/mailbox_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import 'dart:io';
import 'dart:isolate';
import 'dart:typed_data';

import 'package:native_synchronization/mailbox.dart';
import 'package:native_synchronization/sendable.dart';
import 'package:native_synchronization_temp/mailbox.dart';
import 'package:native_synchronization_temp/sendable.dart';
import 'package:test/test.dart';

void main() {
Expand Down
4 changes: 2 additions & 2 deletions test/primitives_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import 'dart:io';
import 'dart:isolate';

import 'package:ffi/ffi.dart';
import 'package:native_synchronization/primitives.dart';
import 'package:native_synchronization/sendable.dart';
import 'package:native_synchronization_temp/primitives.dart';
import 'package:native_synchronization_temp/sendable.dart';
import 'package:test/test.dart';

void main() {
Expand Down

0 comments on commit 8d596a0

Please sign in to comment.