expo-json-utils 0.13.2-canary-20240719-83ee47b → 0.14.1-canary-20241211-61c49bd
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.14.0 — 2024-10-22
|
|
14
|
+
|
|
15
|
+
### 🛠 Breaking changes
|
|
16
|
+
|
|
17
|
+
- Bumped iOS and tvOS deployment target to 15.1. ([#30840](https://github.com/expo/expo/pull/30840) by [@tsapeta](https://github.com/tsapeta))
|
|
18
|
+
|
|
13
19
|
## 0.13.1 — 2024-04-29
|
|
14
20
|
|
|
15
21
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
3
|
group = 'host.exp.exponent'
|
|
4
|
-
version = '0.
|
|
4
|
+
version = '0.14.0'
|
|
5
5
|
|
|
6
6
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
7
7
|
apply from: expoModulesCorePlugin
|
|
@@ -14,7 +14,7 @@ android {
|
|
|
14
14
|
namespace "expo.modules.jsonutils"
|
|
15
15
|
defaultConfig {
|
|
16
16
|
versionCode 31
|
|
17
|
-
versionName '0.
|
|
17
|
+
versionName '0.14.0'
|
|
18
18
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
19
19
|
}
|
|
20
20
|
testOptions {
|
package/ios/EXJSONUtils.podspec
CHANGED
|
@@ -10,7 +10,10 @@ Pod::Spec.new do |s|
|
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
s.author = package['author']
|
|
12
12
|
s.homepage = package['homepage']
|
|
13
|
-
s.platforms = {
|
|
13
|
+
s.platforms = {
|
|
14
|
+
:ios => '15.1',
|
|
15
|
+
:tvos => '15.1'
|
|
16
|
+
}
|
|
14
17
|
s.source = { git: 'https://github.com/expo/expo.git' }
|
|
15
18
|
s.static_framework = true
|
|
16
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-json-utils",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.1-canary-20241211-61c49bd",
|
|
4
4
|
"description": "Utilities for reading JSONObjects (Android) and NSDictionaries (iOS).",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"keywords": [
|
|
@@ -22,6 +22,5 @@
|
|
|
22
22
|
},
|
|
23
23
|
"author": "650 Industries, Inc.",
|
|
24
24
|
"license": "MIT",
|
|
25
|
-
"homepage": "https://docs.expo.dev"
|
|
26
|
-
"gitHead": "83ee47b5c89c7f1b1a5101189580eaf3555f5962"
|
|
25
|
+
"homepage": "https://docs.expo.dev"
|
|
27
26
|
}
|
|
Binary file
|