Skip to content

Commit fe4da5c

Browse files
committed
5.9.0
1 parent 0b47ee5 commit fe4da5c

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog of `@reason-react-native/netinfo`
22

3-
## 5.6.1
3+
## 5.9.0 - 2020-11-06
4+
5+
- 5.9.0 compat
6+
7+
## 5.6.1 - 2020-11-06
48

59
rescript 8.2 compat
610

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@reason-react-native/netinfo",
3-
"version": "5.6.1",
3+
"version": "5.9.0",
44
"publishConfig": {
55
"access": "public"
66
},
77
"peerDependencies": {
8-
"@react-native-community/netinfo": "^5.6.0"
8+
"@react-native-community/netinfo": "^5.9.0"
99
},
1010
"repository": "https://github.com/reason-react-native/netinfo.git",
1111
"author": "sgny (https://github.com/sgny)",

src/ReactNativeNetInfo.re

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,11 @@ type details = {
6262
.
6363
"isConnectionExpensive": bool,
6464
"ssid": Js.Nullable.t(string),
65+
"bssid": Js.Nullable.t(string),
6566
"strength": Js.Nullable.t(int),
6667
"ipAddress": Js.Nullable.t(string),
6768
"subnet": Js.Nullable.t(string),
69+
"frequency": Js.Nullable.t(float),
6870
"cellularGeneration": Js.Nullable.t(netInfoCellularGeneration),
6971
"carrier": Js.Nullable.t(string),
7072
};

src/ReactNativeNetInfo.rei

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,11 @@ type details = {
6262
.
6363
"isConnectionExpensive": bool,
6464
"ssid": Js.Nullable.t(string),
65+
"bssid": Js.Nullable.t(string),
6566
"strength": Js.Nullable.t(int),
6667
"ipAddress": Js.Nullable.t(string),
6768
"subnet": Js.Nullable.t(string),
69+
"frequency": Js.Nullable.t(float),
6870
"cellularGeneration": Js.Nullable.t(netInfoCellularGeneration),
6971
"carrier": Js.Nullable.t(string),
7072
};

0 commit comments

Comments
 (0)