Skip to content

Commit a7ed9c0

Browse files
Merge pull request #53 from MichaelRFairhurst/void-fixes
Changes for landing dart-lang/sdk#32161
2 parents 70e1639 + 17e3f04 commit a7ed9c0

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ Revert considered deprecated to be notified of `length`, `isEmpty` and
6262
* Removed `Observable{List|Map}.NONE` (not Dart2 compatible).
6363
* Fix issue with type in `ObservableList._notifyListChange`. cl/182284033
6464

65+
## 0.21.0+1-dev
66+
67+
* Updated one of observable's tests to comply with dart 2 voidness semantics
68+
6569
## 0.20.4+3
6670

6771
* Support the latest release of `pkg/quiver` (0.27).

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: observable
2-
version: 0.21.0
2+
version: 0.21.0+1-dev
33
author: Dart Team <[email protected]>
44
description: Support for marking objects as observable
55
homepage: https://github.com/dart-lang/observable

test/observable_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import 'package:test/test.dart';
99

1010
import 'observable_test_utils.dart';
1111

12-
main() => observableTests();
12+
void main() => observableTests();
1313

1414
void observableTests() {
1515
// Track the subscriptions so we can clean them up in tearDown.

0 commit comments

Comments
 (0)