Skip to content

Commit

Permalink
chore(mocktail_image_network): v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel committed Aug 2, 2023
1 parent 94c8ac3 commit 21cc555
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/mocktail/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 1.0.0-dev.0
# 1.0.0

- refactor: use more strict analysis options ([#203](https://github.com/felangel/mocktail/issues/203))
- docs: adjust `LICENSE` year
Expand Down
2 changes: 1 addition & 1 deletion packages/mocktail/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: mocktail
description: A Dart mock library which simplifies mocking with null safety support and no manual mocks or code generation.
version: 1.0.0-dev.0
version: 1.0.0
repository: https://github.com/felangel/mocktail
homepage: https://github.com/felangel/mocktail/tree/main/packages/mocktail
topics: [mock, test]
Expand Down
7 changes: 7 additions & 0 deletions packages/mocktail_image_network/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 1.0.0

- refactor: use more strict analysis options ([#203](https://github.com/felangel/mocktail/issues/203))
- docs: improve example in `README`
- docs: adjust `LICENSE` year
- docs: add topics to `pubspec.yaml`

# 0.3.1

- fix: pass `onDone` callback ([#120](https://github.com/felangel/mocktail/pull/120))
Expand Down
3 changes: 2 additions & 1 deletion packages/mocktail_image_network/example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ class FakeApp extends StatelessWidget {
home: Scaffold(
body: Center(
child: Image.network(
'https://uploads-ssl.webflow.com/5ee12d8d7f840543bde883de/5eec278f49a4916759d679aa_vgv-wordmark-black.svg',
// URL to the Flutter logo from https://flutter.dev/brand
'https://storage.googleapis.com/cms-storage-bucket/c823e53b3a1a7b0d36a9.png',
),
),
),
Expand Down
2 changes: 1 addition & 1 deletion packages/mocktail_image_network/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: An example of mocktail_image_network usage
publish_to: none

environment:
sdk: ">=2.18.0 <3.0.0"
sdk: ">=3.0.0 <4.0.0"

dependencies:
flutter:
Expand Down
7 changes: 4 additions & 3 deletions packages/mocktail_image_network/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
name: mocktail_image_network
description: A Dart package which allows you to mock Image.network in your widget tests with confidence using the mocktail package.
version: 0.3.1
version: 1.0.0
repository: https://github.com/felangel/mocktail
homepage: https://github.com/felangel/mocktail/tree/main/packages/mocktail_image_network
topics: [mock, test]

environment:
sdk: ">=2.12.0 <3.0.0"
sdk: ">=2.12.0 <4.0.0"

dependencies:
mocktail: ^0.3.0
mocktail: ^1.0.0

dev_dependencies:
test: ^1.16.0

0 comments on commit 21cc555

Please sign in to comment.