diff --git a/CHANGELOG.md b/CHANGELOG.md index b35282c..715de10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index c3791de..c2cac70 100644 --- a/package.json +++ b/package.json @@ -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)", diff --git a/src/ReactNativeNetInfo.re b/src/ReactNativeNetInfo.re index a03ddf0..8d0762c 100644 --- a/src/ReactNativeNetInfo.re +++ b/src/ReactNativeNetInfo.re @@ -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), }; diff --git a/src/ReactNativeNetInfo.rei b/src/ReactNativeNetInfo.rei index f6be6d3..ae65be2 100644 --- a/src/ReactNativeNetInfo.rei +++ b/src/ReactNativeNetInfo.rei @@ -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), };