expo-modules-core 1.5.1 → 1.5.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,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 1.5.2 — 2023-06-24
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 1.5.1 — 2023-06-22
14
18
 
15
19
  _This version does not introduce any user-facing changes._
@@ -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 = '1.5.1'
9
+ version = '1.5.2'
10
10
 
11
11
  buildscript {
12
12
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -160,7 +160,7 @@ android {
160
160
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
161
161
  consumerProguardFiles 'proguard-rules.pro'
162
162
  versionCode 1
163
- versionName "1.5.1"
163
+ versionName "1.5.2"
164
164
  buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled.toString()
165
165
 
166
166
  testInstrumentationRunner "expo.modules.TestRunner"
@@ -8,7 +8,6 @@ public interface ConstantsInterface {
8
8
  String getAppScopeKey();
9
9
  String getAppOwnership();
10
10
  String getDeviceName();
11
- int getDeviceYearClass();
12
11
  boolean getIsDevice();
13
12
  int getStatusBarHeight();
14
13
  String getSystemVersion();
@@ -15,8 +15,6 @@
15
15
  - (NSArray<NSString *> *)systemFontNames;
16
16
 
17
17
  + (NSString *)devicePlatform;
18
- + (NSString *)deviceModel;
19
- + (NSNumber *)deviceYear;
20
18
  + (NSString *)deviceName;
21
19
 
22
20
  @end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-modules-core",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
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": "8f1b11dc4866465ba61334b9f93fa5b610c7d150"
45
+ "gitHead": "0efde1d91bcf609c94a9f9b57f47afd9ef315e2d"
46
46
  }