expo-device 4.0.3 → 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -10,11 +10,7 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
- ## 4.0.3 — 2021-10-21
14
-
15
- _This version does not introduce any user-facing changes._
16
-
17
- ## 4.0.2 — 2021-10-15
13
+ ## 4.1.0 — 2021-12-03
18
14
 
19
15
  ### 🛠 Breaking changes
20
16
 
package/README.md CHANGED
@@ -13,7 +13,7 @@ For managed [managed](https://docs.expo.io/versions/latest/introduction/managed-
13
13
 
14
14
  # Installation in bare React Native projects
15
15
 
16
- For bare React Native projects, you must ensure that you have [installed and configured the `react-native-unimodules` package](https://github.com/expo/expo/tree/master/packages/react-native-unimodules) before continuing.
16
+ For bare React Native projects, you must ensure that you have [installed and configured the `expo` package](https://docs.expo.dev/bare/installing-expo-modules/) before continuing.
17
17
 
18
18
  ### Add the package to your npm dependencies
19
19
 
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '4.0.3'
6
+ version = '4.1.0'
7
7
 
8
8
  buildscript {
9
9
  // Simple helper that allows the root project to override versions declared by this library.
@@ -61,7 +61,7 @@ android {
61
61
  minSdkVersion safeExtGet("minSdkVersion", 21)
62
62
  targetSdkVersion safeExtGet("targetSdkVersion", 30)
63
63
  versionCode 12
64
- versionName '4.0.3'
64
+ versionName '4.1.0'
65
65
  }
66
66
  lintOptions {
67
67
  abortOnError false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-device",
3
- "version": "4.0.3",
3
+ "version": "4.1.0",
4
4
  "description": "A universal module that gets physical information about the device running the application",
5
5
  "main": "build/Device.js",
6
6
  "types": "build/Device.d.ts",
@@ -33,11 +33,13 @@
33
33
  "license": "MIT",
34
34
  "homepage": "https://docs.expo.dev/versions/latest/sdk/device/",
35
35
  "dependencies": {
36
- "expo-modules-core": "~0.4.4",
37
36
  "ua-parser-js": "^0.7.19"
38
37
  },
39
38
  "devDependencies": {
40
39
  "expo-module-scripts": "^2.0.0"
41
40
  },
42
- "gitHead": "4fa0497a180ae707fa860cb03858630ab7af19f4"
41
+ "peerDependencies": {
42
+ "expo": "*"
43
+ },
44
+ "gitHead": "2e5c6983b86d5ecfca028ba64002897d8adc2cc4"
43
45
  }