expo-manifests 0.3.0 → 0.3.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
+ ## 0.3.1 — 2022-07-16
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 0.3.0 — 2022-04-18
14
18
 
15
19
  ### 🎉 New features
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '0.3.0'
6
+ version = '0.3.1'
7
7
 
8
8
  buildscript {
9
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -74,7 +74,7 @@ android {
74
74
  minSdkVersion safeExtGet("minSdkVersion", 21)
75
75
  targetSdkVersion safeExtGet("targetSdkVersion", 31)
76
76
  versionCode 31
77
- versionName '0.3.0'
77
+ versionName '0.3.1'
78
78
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
79
79
  }
80
80
  lintOptions {
@@ -102,7 +102,7 @@ abstract class Manifest(protected val json: JSONObject) {
102
102
  fun getDebuggerHost(): String = getExpoGoConfigRootObject()!!.require("debuggerHost")
103
103
  fun getMainModuleName(): String = getExpoGoConfigRootObject()!!.require("mainModuleName")
104
104
  fun getLogUrl(): String? = getExpoGoConfigRootObject()?.getNullable("logUrl")
105
- fun getHostUri(): String? = getExpoGoConfigRootObject()?.getNullable("hostUri")
105
+ fun getHostUri(): String? = getExpoClientConfigRootObject()?.getNullable("hostUri")
106
106
 
107
107
  fun isVerified(): Boolean = json.getNullable("isVerified") ?: false
108
108
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-manifests",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Code to parse and use Expo and Expo Updates manifests.",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -22,5 +22,5 @@
22
22
  "dependencies": {
23
23
  "expo-json-utils": "~0.3.0"
24
24
  },
25
- "gitHead": "22dce752354bb429c84851bc4389abe47a766b1f"
25
+ "gitHead": "c6678c65b68e45062d49a2deea8e822f69388278"
26
26
  }