expo-contacts 14.1.0-canary-20250404-87e2506 → 14.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
@@ -2,12 +2,20 @@
2
2
 
3
3
  ## Unpublished
4
4
 
5
- - Fixed an issue on iOS where social profile urls were badly stored. ([#31771](https://github.com/expo/expo/pull/31771) by [@mlecoq](https://github.com/mlecoq))
6
-
7
5
  ### 🛠 Breaking changes
8
6
 
9
7
  ### 🎉 New features
10
8
 
9
+ ### 🐛 Bug fixes
10
+
11
+ ### 💡 Others
12
+
13
+ ## 14.1.0 — 2025-04-04
14
+
15
+ - Fixed an issue on iOS where social profile urls were badly stored. ([#31771](https://github.com/expo/expo/pull/31771) by [@mlecoq](https://github.com/mlecoq))
16
+
17
+ ### 🎉 New features
18
+
11
19
  - added the ability to change isFavorite property of contacts on Android (using updateContactAsync) ([#34483](https://github.com/expo/expo/pull/34483) by [@NorseGaud](https://github.com/NorseGaud))
12
20
  - Add `presentAccessPickerAsync` function that presents the iOS 18.0+ picker for limited contacts access. ([#33771](https://github.com/expo/expo/pull/33771) by [@tsapeta](https://github.com/tsapeta))
13
21
  - [iOS] Exposed `ContactAccessButton` from SwiftUI. ([#33782](https://github.com/expo/expo/pull/33782) by [@tsapeta](https://github.com/tsapeta))
@@ -4,13 +4,13 @@ plugins {
4
4
  }
5
5
 
6
6
  group = 'host.exp.exponent'
7
- version = '14.0.2'
7
+ version = '14.1.0'
8
8
 
9
9
  android {
10
10
  namespace "expo.modules.contacts"
11
11
  defaultConfig {
12
12
  versionCode 29
13
- versionName "14.0.2"
13
+ versionName "14.1.0"
14
14
  }
15
15
  }
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-contacts",
3
- "version": "14.1.0-canary-20250404-87e2506",
3
+ "version": "14.1.0",
4
4
  "description": "Provides access to the phone's system contacts.",
5
5
  "main": "src/index.ts",
6
6
  "types": "build/index.d.ts",
@@ -34,11 +34,12 @@
34
34
  "preset": "expo-module-scripts"
35
35
  },
36
36
  "devDependencies": {
37
- "expo-module-scripts": "4.0.6-canary-20250404-87e2506"
37
+ "expo-module-scripts": "^4.1.0"
38
38
  },
39
39
  "peerDependencies": {
40
- "expo": "53.0.0-canary-20250404-87e2506",
40
+ "expo": "*",
41
41
  "react": "*",
42
42
  "react-native": "*"
43
- }
43
+ },
44
+ "gitHead": "68b8233002dc678934ba40cbade7fbc80e71aeff"
44
45
  }