Skip to content

Commit 68db983

Browse files
committed
release: Release v1.0.0
1 parent a3b0ed0 commit 68db983

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,25 @@
1+
## 1.0.0
2+
3+
**Feature**
4+
5+
- Update flutter_hooks to "^0.21.2"
6+
7+
**Development**
8+
9+
- Update to Melos 6.3.3
10+
111
## 0.0.7+1
212

313
**Development**
4-
- Update some documents
14+
15+
- Update some documents
516

617
## 0.0.6, 0.0.7
718

819
**Feature**
20+
921
- [#40](https://github.com/wasabeef/flutter_hooks_test/pull/40) Add a parameter "wrapper" to allow adding providers to hooks. by [@KalSat](https://github.com/KalSat)
22+
1023
```dart
1124
final result = await buildHook(
1225
(_) {
@@ -23,16 +36,19 @@
2336
## 0.0.5
2437

2538
**Feature**
39+
2640
- [#35](https://github.com/wasabeef/flutter_hooks_test/pull/35) Support Flutter 3.16.0.
2741

2842
## 0.0.3, 0.0.4
2943

3044
**Feature**
45+
3146
- Update Dart to ">=2.17.0 <4.0.0"
3247
- Update Flutter to ">=3.0.0"
3348
- Update flutter_hooks to ">=0.18.0"
3449

3550
**Development**
51+
3652
- Update to Melos 3.0.1
3753

3854
## 0.0.1, 0.0.2

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
## The first thing
2929

30-
This package has great respect for [react-hooks-testing-library](https://github.com/testing-library/react-hooks-testing-library). So the idea is based on it.
30+
This package is heavily inspired by [react-hooks-testing-library](https://github.com/testing-library/react-hooks-testing-library), and its core concepts are based on it.
3131

3232
## The problem
3333

@@ -49,7 +49,7 @@ This library aims to provide a testing experience as close as possible to native
4949
from within a real component.
5050

5151
Using this library, you do not have to concern yourself with how to construct, render or interact
52-
with the flutter component in order to test your hook. You can just use the hook directly and assert
52+
with the Flutter component in order to test your hook. You can just use the hook directly and assert
5353
the results.
5454

5555
## When to use this library
@@ -66,7 +66,7 @@ the results.
6666

6767
```sh
6868
dev_dependencies:
69-
flutter_hooks_test: ^x.x.x
69+
flutter_hooks_test:
7070
```
7171

7272
## Example

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: flutter_hooks_test
22

33
description: Simple and complete Flutter hooks testing utilities that encourage good testing practices.
4-
version: 0.0.7+1
4+
version: 1.0.0
55
homepage: https://github.com/wasabeef/flutter_hooks_test
66
repository: https://github.com/wasabeef/flutter_hooks_test
77
documentation: https://github.com/wasabeef/flutter_hooks_test

0 commit comments

Comments
 (0)