Skip to content

Commit

Permalink
5.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MoOx committed Nov 7, 2020
1 parent 0b47ee5 commit fe4da5c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog of `@reason-react-native/netinfo`

## 5.6.1
## 5.9.0 - 2020-11-06

- 5.9.0 compat

## 5.6.1 - 2020-11-06

rescript 8.2 compat

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@reason-react-native/netinfo",
"version": "5.6.1",
"version": "5.9.0",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@react-native-community/netinfo": "^5.6.0"
"@react-native-community/netinfo": "^5.9.0"
},
"repository": "https://github.com/reason-react-native/netinfo.git",
"author": "sgny (https://github.com/sgny)",
Expand Down
2 changes: 2 additions & 0 deletions src/ReactNativeNetInfo.re
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,11 @@ type details = {
.
"isConnectionExpensive": bool,
"ssid": Js.Nullable.t(string),
"bssid": Js.Nullable.t(string),
"strength": Js.Nullable.t(int),
"ipAddress": Js.Nullable.t(string),
"subnet": Js.Nullable.t(string),
"frequency": Js.Nullable.t(float),
"cellularGeneration": Js.Nullable.t(netInfoCellularGeneration),
"carrier": Js.Nullable.t(string),
};
Expand Down
2 changes: 2 additions & 0 deletions src/ReactNativeNetInfo.rei
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,11 @@ type details = {
.
"isConnectionExpensive": bool,
"ssid": Js.Nullable.t(string),
"bssid": Js.Nullable.t(string),
"strength": Js.Nullable.t(int),
"ipAddress": Js.Nullable.t(string),
"subnet": Js.Nullable.t(string),
"frequency": Js.Nullable.t(float),
"cellularGeneration": Js.Nullable.t(netInfoCellularGeneration),
"carrier": Js.Nullable.t(string),
};
Expand Down

0 comments on commit fe4da5c

Please sign in to comment.