Commit da64be72 authored by Mehdi Achour's avatar Mehdi Achour

chore: prepare for 0.19.0

parent 8cd63a9a
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
### next ### next
### 0.19.0
* Add `getInstallReferrer` (https://github.com/rebeccahughes/react-native-device-info/pull/344)
### 0.18.0 ### 0.18.0
* Add `getBatteryLevel` (https://github.com/rebeccahughes/react-native-device-info/pull/359) * Add `getBatteryLevel` (https://github.com/rebeccahughes/react-native-device-info/pull/359)
......
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = "RNDeviceInfo" s.name = "RNDeviceInfo"
s.version = "0.18.0" s.version = "0.19.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"
......
...@@ -19,6 +19,7 @@ export function getDeviceLocale(): string; ...@@ -19,6 +19,7 @@ export function getDeviceLocale(): string;
export function getDeviceCountry(): string; export function getDeviceCountry(): string;
export function getTimezone(): string; export function getTimezone(): string;
export function getInstanceID(): string; export function getInstanceID(): string;
export function getInstallReferrer(): string;
export function isEmulator(): boolean; export function isEmulator(): boolean;
export function isTablet(): boolean; export function isTablet(): boolean;
export function getFontScale(): number; export function getFontScale(): number;
......
...@@ -19,6 +19,7 @@ declare module.exports: { ...@@ -19,6 +19,7 @@ declare module.exports: {
getDeviceCountry: () => string, getDeviceCountry: () => string,
getTimezone: () => string, getTimezone: () => string,
getInstanceID: () => string, getInstanceID: () => string,
getInstallReferrer: () => string,
isEmulator: () => boolean, isEmulator: () => boolean,
isTablet: () => boolean, isTablet: () => boolean,
getFontScale: () => number, getFontScale: () => number,
......
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