Skip to content

Commit 1a8e18f

Browse files
committed
fix: upgrade flutter_hooks
1 parent b147ca4 commit 1a8e18f

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
os:
22
- linux
3-
sudo: false
43
before_script:
54
- git clone https://github.com/flutter/flutter.git -b stable --depth 1
65
- ./flutter/bin/flutter doctor
@@ -14,4 +13,3 @@ after_success:
1413
cache:
1514
directories:
1615
- $HOME/.pub-cache
17-

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
# 0.1.0
1+
## 0.1.0
22

33
Initial Version of the library.
44

55
* Includes the ability to pass a Redux `Store` down to descendant Widgets using a `StoreProvider`.
66
* Includes the hooks `useStore`, `useDispatch` and `useSelector`.
7+
8+
## 0.1.1
9+
10+
* Updated the `flutter_hooks` dependency to its latest version

pubspec.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_redux_hooks
22
description: A hook-based alternative to flutter_redux
3-
version: 0.1.0
3+
version: 0.1.1
44
homepage: https://github.com/mrnkr/flutter_redux_hooks
55

66
environment:
@@ -11,12 +11,11 @@ dependencies:
1111
sdk: flutter
1212

1313
redux: ">=4.0.0 <5.0.0"
14-
flutter_hooks: ^0.12.0
14+
flutter_hooks: ^0.13.0
1515
meta: ^1.1.8
1616

1717
dev_dependencies:
1818
flutter_test:
1919
sdk: flutter
2020

2121
pedantic: 1.8.0+1
22-

0 commit comments

Comments
 (0)