expo-modules-core 1.11.5 → 1.11.6

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
+ ## 1.11.6 — 2024-01-12
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 1.11.5 — 2024-01-10
14
18
 
15
19
  ### 🎉 New features
@@ -5,7 +5,7 @@ apply plugin: 'kotlin-android'
5
5
  apply plugin: 'maven-publish'
6
6
 
7
7
  group = 'host.exp.exponent'
8
- version = '1.11.5'
8
+ version = '1.11.6'
9
9
 
10
10
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
11
11
  if (expoModulesCorePlugin.exists()) {
@@ -143,7 +143,7 @@ android {
143
143
  defaultConfig {
144
144
  consumerProguardFiles 'proguard-rules.pro'
145
145
  versionCode 1
146
- versionName "1.11.5"
146
+ versionName "1.11.6"
147
147
  buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled.toString()
148
148
 
149
149
  testInstrumentationRunner "expo.modules.TestRunner"
@@ -17,7 +17,7 @@ open class ExpoAppDelegate: UIResponder, UIApplicationDelegate {
17
17
  @objc
18
18
  public let reactDelegate = ExpoReactDelegate(handlers: reactDelegateHandlers)
19
19
 
20
- #if os(iOS)
20
+ #if os(iOS) || os(tvOS)
21
21
  // MARK: - Initializing the App
22
22
 
23
23
  open func application(_ application: UIApplication, willFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-modules-core",
3
- "version": "1.11.5",
3
+ "version": "1.11.6",
4
4
  "description": "The core of Expo Modules architecture",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -44,5 +44,5 @@
44
44
  "@testing-library/react-hooks": "^7.0.1",
45
45
  "expo-module-scripts": "^3.0.0"
46
46
  },
47
- "gitHead": "ca014bf2516c7644ef303f4c21fdd68de4d99f76"
47
+ "gitHead": "f9100f83a5d971dbdef83336a8f055046566fa83"
48
48
  }