expo-mail-composer 12.7.0 → 12.7.1

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
+ ## 12.7.1 — 2023-12-19
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 12.7.0 — 2023-11-14
14
18
 
15
19
  ### 🛠 Breaking changes
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '12.7.0'
6
+ version = '12.7.1'
7
7
 
8
8
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
9
9
  if (expoModulesCorePlugin.exists()) {
@@ -94,7 +94,7 @@ android {
94
94
  namespace "expo.modules.mailcomposer"
95
95
  defaultConfig {
96
96
  versionCode 17
97
- versionName "12.7.0"
97
+ versionName "12.7.1"
98
98
  }
99
99
  }
100
100
 
@@ -67,7 +67,7 @@ class MailIntentBuilder(
67
67
 
68
68
  fun putAttachments(
69
69
  intentName: String,
70
- application: Application,
70
+ application: Application
71
71
  ) = apply {
72
72
  try {
73
73
  options.attachments?.let { requestedAttachments ->
@@ -17,5 +17,5 @@ data class MailComposerOptions(
17
17
  @Field
18
18
  val isHtml: Boolean?,
19
19
  @Field
20
- val attachments: List<String>?,
20
+ val attachments: List<String>?
21
21
  ) : Record
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-mail-composer",
3
- "version": "12.7.0",
3
+ "version": "12.7.1",
4
4
  "description": "Provides an API to compose mails using OS specific UI",
5
5
  "main": "build/MailComposer.js",
6
6
  "types": "build/MailComposer.d.ts",
@@ -40,5 +40,5 @@
40
40
  "peerDependencies": {
41
41
  "expo": "*"
42
42
  },
43
- "gitHead": "3142a086578deffd8704a8f1b6f0f661527d836c"
43
+ "gitHead": "43f1b4f8a5a9bca649e4e7ca6e4155482a162431"
44
44
  }