expo-json-utils 0.5.0 → 0.6.0

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,16 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.6.0 — 2023-05-08
14
+
15
+ ### 💡 Others
16
+
17
+ - Convert EXManifests iOS implementation to Swift. ([#21298](https://github.com/expo/expo/pull/21298) by [@wschurman](https://github.com/wschurman))
18
+
19
+ ## 0.5.1 — 2023-02-09
20
+
21
+ _This version does not introduce any user-facing changes._
22
+
13
23
  ## 0.5.0 — 2023-02-03
14
24
 
15
25
  ### 💡 Others
@@ -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.5.0'
6
+ version = '0.6.0'
7
7
 
8
8
  buildscript {
9
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -22,7 +22,7 @@ buildscript {
22
22
  if (ext.has("kotlinVersion")) {
23
23
  ext.kotlinVersion()
24
24
  } else {
25
- ext.safeExtGet("kotlinVersion", "1.6.10")
25
+ ext.safeExtGet("kotlinVersion", "1.8.10")
26
26
  }
27
27
  }
28
28
 
@@ -74,7 +74,7 @@ android {
74
74
  minSdkVersion safeExtGet("minSdkVersion", 21)
75
75
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
76
76
  versionCode 31
77
- versionName '0.5.0'
77
+ versionName '0.6.0'
78
78
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
79
79
  }
80
80
  lintOptions {
@@ -91,7 +91,9 @@ dependencies {
91
91
  testImplementation 'org.mockito:mockito-core:1.10.19'
92
92
  testImplementation 'io.mockk:mockk:1.12.3'
93
93
 
94
- androidTestImplementation 'org.amshove.kluent:kluent-android:1.68'
94
+ androidTestImplementation('org.amshove.kluent:kluent-android:1.72') {
95
+ exclude group: 'org.jetbrains.kotlin'
96
+ }
95
97
  androidTestImplementation 'androidx.test:runner:1.4.0'
96
98
  androidTestImplementation 'androidx.test:core:1.4.0'
97
99
  androidTestImplementation 'androidx.test:rules:1.4.0'
@@ -16,14 +16,16 @@ Pod::Spec.new do |s|
16
16
 
17
17
  s.pod_target_xcconfig = {
18
18
  'GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS' => 'YES',
19
- 'GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS' => 'YES'
19
+ 'GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS' => 'YES',
20
+ 'DEFINES_MODULE' => 'YES',
21
+ 'SWIFT_COMPILATION_MODE' => 'wholemodule'
20
22
  }
21
23
 
22
24
  if !$ExpoUseSources&.include?(package['name']) && ENV['EXPO_USE_SOURCE'].to_i == 0 && File.exist?("#{s.name}.xcframework") && Gem::Version.new(Pod::VERSION) >= Gem::Version.new('1.10.0')
23
25
  s.source_files = "#{s.name}/**/*.h"
24
26
  s.vendored_frameworks = "#{s.name}.xcframework"
25
27
  else
26
- s.source_files = "#{s.name}/**/*.{h,m}"
28
+ s.source_files = "#{s.name}/**/*.{h,m,swift}"
27
29
  end
28
30
 
29
31
  s.test_spec 'Tests' do |test_spec|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-json-utils",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "Utilities for reading NSDictionaries (iOS) and JSONObjects (Android).",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -19,5 +19,5 @@
19
19
  "author": "650 Industries, Inc.",
20
20
  "license": "MIT",
21
21
  "homepage": "https://docs.expo.dev/versions/latest/sdk/module-template",
22
- "gitHead": "1815e2eaad8c753588c7b1eb74420174a28e01f4"
22
+ "gitHead": "4ba50c428c8369bb6b3a51a860d4898ad4ccbe78"
23
23
  }