expo-modules-core 0.13.3 → 0.13.4

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
+ ## 0.13.4 — 2022-11-02
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Fixed build errors when testing on React Native nightly builds. ([#19369](https://github.com/expo/expo/pull/19369) by [@kudo](https://github.com/kudo))
18
+
13
19
  ## 0.13.3 — 2022-10-30
14
20
 
15
21
  ### 🎉 New features
@@ -6,7 +6,7 @@ apply plugin: 'maven-publish'
6
6
  apply plugin: "de.undercouch.download"
7
7
 
8
8
  group = 'host.exp.exponent'
9
- version = '0.13.3'
9
+ version = '0.13.4'
10
10
 
11
11
  buildscript {
12
12
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -67,7 +67,12 @@ file("$REACT_NATIVE_DIR/ReactAndroid/gradle.properties").withInputStream { react
67
67
  def FOLLY_VERSION = reactProperties.getProperty("FOLLY_VERSION")
68
68
  def BOOST_VERSION = reactProperties.getProperty("BOOST_VERSION")
69
69
  def DOUBLE_CONVERSION_VERSION = reactProperties.getProperty("DOUBLE_CONVERSION_VERSION")
70
- def REACT_NATIVE_TARGET_VERSION = reactProperties.getProperty("VERSION_NAME").split("\\.")[1].toInteger()
70
+ def REACT_NATIVE_VERSION = reactProperties.getProperty("VERSION_NAME")
71
+ if (REACT_NATIVE_VERSION.startsWith("0.0.0-")) {
72
+ // react-native nightly build published as `0.0.0-20221002-2027-2319f75c8` form, but its semantic is latest
73
+ REACT_NATIVE_VERSION = "9999.9999.9999"
74
+ }
75
+ def REACT_NATIVE_TARGET_VERSION = REACT_NATIVE_VERSION.split("\\.")[1].toInteger()
71
76
 
72
77
  def reactNativeThirdParty = new File("$REACT_NATIVE_DIR/ReactAndroid/src/main/jni/third-party")
73
78
 
@@ -186,7 +191,7 @@ android {
186
191
  targetSdkVersion safeExtGet("targetSdkVersion", 31)
187
192
  consumerProguardFiles 'proguard-rules.pro'
188
193
  versionCode 1
189
- versionName "0.13.3"
194
+ versionName "0.13.4"
190
195
  buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled.toString()
191
196
 
192
197
  testInstrumentationRunner "expo.modules.TestRunner"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-modules-core",
3
- "version": "0.13.3",
3
+ "version": "0.13.4",
4
4
  "description": "The core of Expo Modules architecture",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -42,5 +42,5 @@
42
42
  "@testing-library/react-hooks": "^7.0.1",
43
43
  "expo-module-scripts": "^3.0.0"
44
44
  },
45
- "gitHead": "779ad6af070d07a14f371e3106f02ddd1b093538"
45
+ "gitHead": "1a87dcc55895a9e16e3d4fd0fa78f2244c1d961f"
46
46
  }