expo-contacts 13.0.3 → 13.0.4

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,6 +10,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 13.0.4 — 2024-06-10
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 13.0.3 — 2024-05-01
14
18
 
15
19
  _This version does not introduce any user-facing changes._
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'host.exp.exponent'
4
- version = '13.0.3'
4
+ version = '13.0.4'
5
5
 
6
6
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
7
7
  apply from: expoModulesCorePlugin
@@ -14,7 +14,7 @@ android {
14
14
  namespace "expo.modules.contacts"
15
15
  defaultConfig {
16
16
  versionCode 29
17
- versionName "13.0.3"
17
+ versionName "13.0.4"
18
18
  }
19
19
  }
20
20
 
@@ -236,7 +236,7 @@ func serializeContact(person: CNContact, keys: [String]?, directory: URL?) throw
236
236
  contact[ContactsKey.jobTitle] = person.jobTitle
237
237
  }
238
238
  if fieldHasValue(field: person.departmentName) {
239
- contact[ContactsKey.department] = person.dates
239
+ contact[ContactsKey.department] = person.departmentName
240
240
  }
241
241
 
242
242
  if keysToFetch.contains(CNContactNamePrefixKey) && fieldHasValue(field: person.namePrefix) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-contacts",
3
- "version": "13.0.3",
3
+ "version": "13.0.4",
4
4
  "description": "Provides access to the phone's system contacts.",
5
5
  "main": "build/Contacts.js",
6
6
  "types": "build/Contacts.d.ts",
@@ -39,5 +39,5 @@
39
39
  "peerDependencies": {
40
40
  "expo": "*"
41
41
  },
42
- "gitHead": "87bd0dfa8b784a834191195ca174a00dd30ee5b7"
42
+ "gitHead": "81f5c3d7f38f3cc0b506d713a2346f33a38ce86f"
43
43
  }