Skip to content

Commit 7aa476d

Browse files
committed
Changelog for 3.0.0
1 parent 94cc948 commit 7aa476d

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
## [3.0.0-nullsafety] -2020-01-02
1+
## [3.0.0] - 2020-03-27
2+
* Migrate to null safety
3+
* Fix "Cannot clone a disposed image" error
4+
* Update dependencies.
5+
6+
## [3.0.0-nullsafety] - 2020-01-02
27
* Migrate to null safety
38

49
## [2.5.0] - 2020-12-22

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: cached_network_image
22
description: Flutter library to load and cache network images.
33
Can also be used with placeholder and error widgets.
44
homepage: https://github.com/Baseflow/flutter_cached_network_image
5-
version: 3.0.0-nullsafety
5+
version: 3.0.0
66

77
dependencies:
88
flutter:

test/image_stream_completer_test.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -735,8 +735,7 @@ void main() {
735735
);
736736

737737
var onImageCount = 0;
738-
final activeListener =
739-
(ImageInfo image, bool synchronousCall) {
738+
final activeListener = (ImageInfo image, bool synchronousCall) {
740739
onImageCount += 1;
741740
};
742741
var lastListenerDropped = false;

test/rendering_tester.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ class TestRenderingFlutterBinding extends BindingBase
3434
TestRenderingFlutterBinding({this.onErrors}) {
3535
FlutterError.onError = (FlutterErrorDetails details) {
3636
FlutterError.dumpErrorToConsole(details);
37-
Zone.current.parent!.handleUncaughtError(details.exception,
38-
details.stack!);
37+
Zone.current.parent!
38+
.handleUncaughtError(details.exception, details.stack!);
3939
};
4040
}
4141

0 commit comments

Comments
 (0)