expo-modules-core 2.2.0 → 2.2.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
+ ## 2.2.1 — 2025-02-06
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 2.2.0 — 2025-01-27
14
18
 
15
19
  ### 🎉 New features
@@ -27,6 +27,7 @@ class KotlinExpoModulesCorePlugin implements Plugin<Project> {
27
27
  "1.8.22": "1.8.22-1.0.11",
28
28
  "1.9.23": "1.9.23-1.0.20",
29
29
  "1.9.24": "1.9.24-1.0.20",
30
+ "1.9.25": "1.9.25-1.0.20",
30
31
  "2.0.21": "2.0.21-1.0.28"
31
32
  ]
32
33
 
@@ -34,7 +35,7 @@ class KotlinExpoModulesCorePlugin implements Plugin<Project> {
34
35
  ? project.rootProject.ext.get("kspVersion")
35
36
  : kspVersionsMap.containsKey(project.ext.kotlinVersion())
36
37
  ? kspVersionsMap.get(project.ext.kotlinVersion())
37
- : "1.9.24-1.0.20"
38
+ : "1.9.25-1.0.20"
38
39
  }
39
40
  }
40
41
  }
@@ -3,7 +3,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
3
  apply plugin: 'com.android.library'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '2.2.0'
6
+ version = '2.2.1'
7
7
 
8
8
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
9
9
  apply from: expoModulesCorePlugin
@@ -86,7 +86,7 @@ android {
86
86
  defaultConfig {
87
87
  consumerProguardFiles 'proguard-rules.pro'
88
88
  versionCode 1
89
- versionName "2.2.0"
89
+ versionName "2.2.1"
90
90
  buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled.toString()
91
91
 
92
92
  testInstrumentationRunner "expo.modules.TestRunner"
@@ -118,7 +118,11 @@ android {
118
118
 
119
119
  if (KOTLIN_MAJOR_VERSION < 2) {
120
120
  composeOptions {
121
- kotlinCompilerExtensionVersion = "1.5.14"
121
+ def versionsMap = [
122
+ "1.9.24": "1.5.14",
123
+ "1.9.25": "1.5.15",
124
+ ]
125
+ kotlinCompilerExtensionVersion = versionsMap[kotlinVersion()]
122
126
  }
123
127
  }
124
128
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-modules-core",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "The core of Expo Modules architecture",
5
5
  "main": "src/index.ts",
6
6
  "types": "build/index.d.ts",
@@ -44,5 +44,5 @@
44
44
  "@testing-library/react-native": "^12.5.2",
45
45
  "expo-module-scripts": "^4.0.3"
46
46
  },
47
- "gitHead": "3fd37fd31fd818d833e85c4723b1578010da6967"
47
+ "gitHead": "9442f00874e0cd738030abae80e5bdef184a2581"
48
48
  }