Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(mocktail): v1.0.0 #205

Merged
merged 2 commits into from
Aug 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/mocktail/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.0.0

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

# 0.3.0

- **BREAKING** feat: add support for type argument matching ([#66](https://github.com/felangel/mocktail/issues/66))
Expand Down
5 changes: 3 additions & 2 deletions packages/mocktail/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
name: mocktail
description: A Dart mock library which simplifies mocking with null safety support and no manual mocks or code generation.
version: 0.3.0
version: 1.0.0
repository: https://github.com/felangel/mocktail
homepage: https://github.com/felangel/mocktail/tree/main/packages/mocktail
topics: [mock, test]

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

dependencies:
collection: ^1.15.0
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