expo-local-authentication 16.0.0-canary-20250404-87e2506 → 16.0.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
@@ -4,14 +4,20 @@
4
4
 
5
5
  ### 🛠 Breaking changes
6
6
 
7
- - Bump minimum macOS version to 11.0. ([#34980](https://github.com/expo/expo/pull/34980) by [@gabrieldonadel](https://github.com/gabrieldonadel))
8
-
9
7
  ### 🎉 New features
10
8
 
11
9
  ### 🐛 Bug fixes
12
10
 
13
11
  ### 💡 Others
14
12
 
13
+ ## 16.0.0 — 2025-04-04
14
+
15
+ ### 🛠 Breaking changes
16
+
17
+ - Bump minimum macOS version to 11.0. ([#34980](https://github.com/expo/expo/pull/34980) by [@gabrieldonadel](https://github.com/gabrieldonadel))
18
+
19
+ ### 💡 Others
20
+
15
21
  - [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
16
22
  - [apple] Migrate remaining `expo-module.config.json` to unified platform syntax. ([#34445](https://github.com/expo/expo/pull/34445) by [@reichhartd](https://github.com/reichhartd))
17
23
 
@@ -4,13 +4,13 @@ plugins {
4
4
  }
5
5
 
6
6
  group = 'host.exp.exponent'
7
- version = '15.0.1'
7
+ version = '16.0.0'
8
8
 
9
9
  android {
10
10
  namespace "expo.modules.localauthentication"
11
11
  defaultConfig {
12
12
  versionCode 30
13
- versionName "15.0.1"
13
+ versionName "16.0.0"
14
14
  }
15
15
  }
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-local-authentication",
3
- "version": "16.0.0-canary-20250404-87e2506",
3
+ "version": "16.0.0",
4
4
  "description": "Provides an API for FaceID and TouchID (iOS) or the Fingerprint API (Android) to authenticate the user with a face or fingerprint scan.",
5
5
  "main": "build/LocalAuthentication.js",
6
6
  "types": "build/LocalAuthentication.d.ts",
@@ -41,9 +41,10 @@
41
41
  "invariant": "^2.2.4"
42
42
  },
43
43
  "devDependencies": {
44
- "expo-module-scripts": "4.0.6-canary-20250404-87e2506"
44
+ "expo-module-scripts": "^4.1.0"
45
45
  },
46
46
  "peerDependencies": {
47
- "expo": "53.0.0-canary-20250404-87e2506"
48
- }
47
+ "expo": "*"
48
+ },
49
+ "gitHead": "68b8233002dc678934ba40cbade7fbc80e71aeff"
49
50
  }