expo-speech 13.0.2-canary-20250306-d9d3e02 → 13.0.2-canary-20250331-817737a

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
@@ -12,6 +12,7 @@
12
12
 
13
13
  - [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
14
14
  - [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))
15
+ - [iOS] Fix warnings which will become errors in Swift 6. ([#35288](https://github.com/expo/expo/pull/35288) by [@behenate](https://github.com/behenate))
15
16
 
16
17
  ## 13.0.1 - 2025-01-10
17
18
 
@@ -1,6 +1,6 @@
1
1
  import ExpoModulesCore
2
2
 
3
- class InvalidVoiceException: GenericException<String> {
3
+ internal final class InvalidVoiceException: GenericException<String> {
4
4
  override var reason: String {
5
5
  "Cannot find voice with identifier: \(param)!"
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-speech",
3
- "version": "13.0.2-canary-20250306-d9d3e02",
3
+ "version": "13.0.2-canary-20250331-817737a",
4
4
  "description": "Provides text-to-speech functionality.",
5
5
  "main": "build/Speech.js",
6
6
  "types": "build/Speech.d.ts",
@@ -37,10 +37,9 @@
37
37
  },
38
38
  "dependencies": {},
39
39
  "devDependencies": {
40
- "expo-module-scripts": "4.0.5-canary-20250306-d9d3e02"
40
+ "expo-module-scripts": "4.0.5-canary-20250331-817737a"
41
41
  },
42
42
  "peerDependencies": {
43
- "expo": "53.0.0-canary-20250306-d9d3e02"
44
- },
45
- "gitHead": "d9d3e024d8742099c307754673f17117a20c1dea"
43
+ "expo": "53.0.0-canary-20250331-817737a"
44
+ }
46
45
  }