expo-mesh-gradient 0.2.2-canary-20250114-804e26d → 1.0.0-canary-20250219-4a5dade

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
@@ -4,17 +4,17 @@
4
4
 
5
5
  ### 🛠 Breaking changes
6
6
 
7
+ - Bump minimum macOS version to 11.0. ([#34980](https://github.com/expo/expo/pull/34980) by [@gabrieldonadel](https://github.com/gabrieldonadel))
8
+
7
9
  ### 🎉 New features
8
10
 
9
11
  ### 🐛 Bug fixes
10
12
 
11
13
  ### 💡 Others
12
14
 
13
- ## 0.2.1 2025-01-10
14
-
15
- _This version does not introduce any user-facing changes._
15
+ - [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))
16
16
 
17
- ## 0.2.0 2024-11-29
17
+ ## 0.2.0 - 2024-11-29
18
18
 
19
19
  ### 🎉 New features
20
20
 
@@ -1,10 +1,6 @@
1
1
  {
2
- "platforms": [
3
- "apple"
4
- ],
2
+ "platforms": ["apple"],
5
3
  "apple": {
6
- "modules": [
7
- "MeshGradientModule"
8
- ]
4
+ "modules": ["MeshGradientModule"]
9
5
  }
10
6
  }
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
13
13
  s.platforms = {
14
14
  :ios => '15.1',
15
15
  :tvos => '15.1',
16
- :osx => '10.15',
16
+ :osx => '11.0',
17
17
  }
18
18
  s.swift_version = '5.4'
19
19
  s.source = { git: 'https://github.com/expo/expo.git' }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-mesh-gradient",
3
- "version": "0.2.2-canary-20250114-804e26d",
3
+ "version": "1.0.0-canary-20250219-4a5dade",
4
4
  "description": "A module that exposes MeshGradient view from SwiftUI to React Native",
5
5
  "main": "src/index.ts",
6
6
  "types": "build/index.d.ts",
@@ -31,12 +31,12 @@
31
31
  "dependencies": {},
32
32
  "devDependencies": {
33
33
  "@types/react": "~18.3.12",
34
- "expo-module-scripts": "4.0.4-canary-20250114-804e26d"
34
+ "expo-module-scripts": "4.0.5-canary-20250219-4a5dade"
35
35
  },
36
36
  "peerDependencies": {
37
- "expo": "53.0.0-canary-20250114-804e26d",
37
+ "expo": "53.0.0-canary-20250219-4a5dade",
38
38
  "react": "*",
39
39
  "react-native": "*"
40
40
  },
41
- "gitHead": "804e26d8545f2b890dfa80eeb8122036f38d4d0c"
41
+ "gitHead": "4a5daded61d3d8b9d501059039ac74c09c25675b"
42
42
  }