Skip to content

Commit 8d1c838

Browse files
committed
chore(mocktail_image_network): v1.0.0
1 parent 94c8ac3 commit 8d1c838

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

packages/mocktail_image_network/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 1.0.0-dev.0
2+
3+
- refactor: use more strict analysis options ([#203](https://github.com/felangel/mocktail/issues/203))
4+
- docs: improve example in `README`
5+
- docs: adjust `LICENSE` year
6+
- docs: add topics to `pubspec.yaml`
7+
18
# 0.3.1
29

310
- fix: pass `onDone` callback ([#120](https://github.com/felangel/mocktail/pull/120))

packages/mocktail_image_network/example/lib/main.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ class FakeApp extends StatelessWidget {
1313
home: Scaffold(
1414
body: Center(
1515
child: Image.network(
16-
'https://uploads-ssl.webflow.com/5ee12d8d7f840543bde883de/5eec278f49a4916759d679aa_vgv-wordmark-black.svg',
16+
// URL to the Flutter logo from https://flutter.dev/brand
17+
'https://storage.googleapis.com/cms-storage-bucket/c823e53b3a1a7b0d36a9.png',
1718
),
1819
),
1920
),

packages/mocktail_image_network/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: An example of mocktail_image_network usage
33
publish_to: none
44

55
environment:
6-
sdk: ">=2.18.0 <3.0.0"
6+
sdk: ">=3.0.0 <4.0.0"
77

88
dependencies:
99
flutter:
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
name: mocktail_image_network
22
description: A Dart package which allows you to mock Image.network in your widget tests with confidence using the mocktail package.
3-
version: 0.3.1
3+
version: 1.0.0-dev.0
44
repository: https://github.com/felangel/mocktail
55
homepage: https://github.com/felangel/mocktail/tree/main/packages/mocktail_image_network
6+
topics: [mock, test]
67

78
environment:
8-
sdk: ">=2.12.0 <3.0.0"
9+
sdk: ">=2.12.0 <4.0.0"
910

1011
dependencies:
11-
mocktail: ^0.3.0
12+
mocktail: ^1.0.0-dev.0
1213

1314
dev_dependencies:
1415
test: ^1.16.0

0 commit comments

Comments
 (0)