Commit 05a4b53c authored by Mehdi Achour's avatar Mehdi Achour

chore: prepare for 0.20.0

parent 48180070
...@@ -2,6 +2,15 @@ ...@@ -2,6 +2,15 @@
### next ### next
### 0.20.0
* Made the following methods compatible with UWP: (https://github.com/rebeccahughes/react-native-device-info/pull/345)
* `getBatteryLevel()`
* `getFirstIntallTime()`
* `getIPAddress()`
* `getMaxMemory()`
* isPinOrFingerprintSet()`
### 0.19.0 ### 0.19.0
* Add `getInstallReferrer` (https://github.com/rebeccahughes/react-native-device-info/pull/344) * Add `getInstallReferrer` (https://github.com/rebeccahughes/react-native-device-info/pull/344)
......
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = "RNDeviceInfo" s.name = "RNDeviceInfo"
s.version = "0.19.0" s.version = "0.20.0"
s.summary = "Device Information for react-native" s.summary = "Device Information for react-native"
s.homepage = "https://github.com/rebeccahughes/react-native-device-info" s.homepage = "https://github.com/rebeccahughes/react-native-device-info"
......
...@@ -6,7 +6,7 @@ using System.Runtime.InteropServices; ...@@ -6,7 +6,7 @@ using System.Runtime.InteropServices;
// set of attributes. Change these attribute values to modify the information // set of attributes. Change these attribute values to modify the information
// associated with an assembly. // associated with an assembly.
[assembly: AssemblyTitle("RNDeviceInfo")] [assembly: AssemblyTitle("RNDeviceInfo")]
[assembly: AssemblyDescription("")] [assembly: AssemblyDescription("Device Information for React Native")]
[assembly: AssemblyConfiguration("")] [assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("RNDeviceInfo")] [assembly: AssemblyProduct("RNDeviceInfo")]
...@@ -24,6 +24,6 @@ using System.Runtime.InteropServices; ...@@ -24,6 +24,6 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyVersion("0.20.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: ComVisible(false)] [assembly: ComVisible(false)]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment