expo-widgets 57.0.0 → 57.0.2

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,16 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 57.0.2 — 2026-07-03
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 57.0.1 — 2026-06-27
18
+
19
+ ### 🐛 Bug fixes
20
+
21
+ - [iOS][plugin] Fix extension `CFBundleVersion` sync. ([#47061](https://github.com/expo/expo/pull/47061) by [@jakex7](https://github.com/jakex7))
22
+
13
23
  ## 57.0.0 — 2026-06-25
14
24
 
15
25
  _This version does not introduce any user-facing changes._
@@ -13,7 +13,7 @@ apply plugin: 'expo-module-gradle-plugin'
13
13
  apply plugin: 'org.jetbrains.kotlin.plugin.compose'
14
14
 
15
15
  group = 'expo.modules.widgets'
16
- version = '57.0.0'
16
+ version = '57.0.2'
17
17
 
18
18
  expoModule {
19
19
  canBePublished false
@@ -23,7 +23,7 @@ android {
23
23
  namespace "expo.modules.widgets"
24
24
  defaultConfig {
25
25
  versionCode 1
26
- versionName '57.0.0'
26
+ versionName '57.0.2'
27
27
  }
28
28
 
29
29
  buildFeatures {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-widgets",
3
- "version": "57.0.0",
3
+ "version": "57.0.2",
4
4
  "description": "Widgets.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -22,7 +22,7 @@
22
22
  "homepage": "https://docs.expo.dev/versions/latest/sdk/widgets/",
23
23
  "dependencies": {
24
24
  "@expo/plist": "^0.8.0",
25
- "@expo/ui": "~57.0.0"
25
+ "@expo/ui": "~57.0.3"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@expo/spawn-async": "^1.8.0",
@@ -30,8 +30,8 @@
30
30
  "@types/react": "~19.2.0",
31
31
  "react-native": "0.86.0",
32
32
  "resolve-workspace-root": "^2.0.0",
33
- "expo-module-scripts": "56.0.3",
34
- "expo": "57.0.0-preview.0"
33
+ "expo": "57.0.2",
34
+ "expo-module-scripts": "56.0.3"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "expo": "*",
@@ -44,7 +44,7 @@
44
44
  "./scripts/xcode-build-bundle.sh"
45
45
  ]
46
46
  },
47
- "gitHead": "e3eb896c5fdcd89e0cded98ff4e35c9db12cc9c0",
47
+ "gitHead": "5104cb89c3938bc9653e0cbad43da3a43a2e77a7",
48
48
  "scripts": {
49
49
  "build": "expo-module build",
50
50
  "build:plugin": "expo-module build plugin",
@@ -46,13 +46,15 @@ const withTargetXcodeProject = (config, { targetName, bundleIdentifier, deployme
46
46
  const xcodeProject = config.modResults;
47
47
  const targetUuid = xcodeProject.generateUuid();
48
48
  const groupName = 'Embed Foundation Extensions';
49
+ const marketingVersion = config.ios?.version ?? config.version ?? '1.0';
50
+ const currentProjectVersion = config.ios?.buildNumber ?? '1';
49
51
  const xCConfigurationList = (0, addXCConfigurationList_1.addXCConfigurationList)(xcodeProject, {
50
52
  targetName,
51
53
  bundleIdentifier,
52
54
  deploymentTarget,
53
55
  appleTeamId,
54
- marketingVersion: '1.0',
55
- currentProjectVersion: '1',
56
+ marketingVersion,
57
+ currentProjectVersion,
56
58
  });
57
59
  const productFile = (0, addProductFile_1.addProductFile)(xcodeProject, {
58
60
  targetName,
@@ -25,14 +25,16 @@ const withTargetXcodeProject: ConfigPlugin<TargetXcodeProjectProps> = (
25
25
  const xcodeProject = config.modResults;
26
26
  const targetUuid = xcodeProject.generateUuid();
27
27
  const groupName = 'Embed Foundation Extensions';
28
+ const marketingVersion = config.ios?.version ?? config.version ?? '1.0';
29
+ const currentProjectVersion = config.ios?.buildNumber ?? '1';
28
30
 
29
31
  const xCConfigurationList = addXCConfigurationList(xcodeProject, {
30
32
  targetName,
31
33
  bundleIdentifier,
32
34
  deploymentTarget,
33
35
  appleTeamId,
34
- marketingVersion: '1.0',
35
- currentProjectVersion: '1',
36
+ marketingVersion,
37
+ currentProjectVersion,
36
38
  });
37
39
 
38
40
  const productFile = addProductFile(xcodeProject, {