expo-font 13.0.2 → 13.0.3

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,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 13.0.3 — 2025-01-10
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [ios] Fix crash when writing to fontFamilyAliases ([#34044](https://github.com/expo/expo/pull/34044) by [@techied](https://github.com/techied))
18
+
13
19
  ## 13.0.2 — 2024-12-19
14
20
 
15
21
  ### 🐛 Bug fixes
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'host.exp.exponent'
4
- version = '13.0.2'
4
+ version = '13.0.3'
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.font"
15
15
  defaultConfig {
16
16
  versionCode 29
17
- versionName "13.0.2"
17
+ versionName "13.0.3"
18
18
  }
19
19
  }
20
20
 
@@ -34,7 +34,7 @@ internal struct FontFamilyAliasManager {
34
34
  */
35
35
  internal static func setAlias(_ familyNameAlias: String, forFont font: String) {
36
36
  maybeSwizzleUIFont()
37
- queue.sync {
37
+ queue.sync(flags: .barrier) {
38
38
  fontFamilyAliases[familyNameAlias] = font
39
39
  }
40
40
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-font",
3
- "version": "13.0.2",
3
+ "version": "13.0.3",
4
4
  "description": "Load fonts at runtime and use them in React Native components.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -38,11 +38,11 @@
38
38
  },
39
39
  "devDependencies": {
40
40
  "@testing-library/react-native": "^12.5.2",
41
- "expo-module-scripts": "^4.0.0"
41
+ "expo-module-scripts": "^4.0.3"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "expo": "*",
45
45
  "react": "*"
46
46
  },
47
- "gitHead": "a246df22c427d8c6c905de0915ed50f721fdf062"
47
+ "gitHead": "986a4689b91f3efc527f7178a320b987c0005842"
48
48
  }