expo-json-utils 0.13.2-canary-20240628-1ba8152 → 1.0.0-canary-20240814-ce0f7d5

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
@@ -4,6 +4,8 @@
4
4
 
5
5
  ### 🛠 Breaking changes
6
6
 
7
+ - Bumped iOS and tvOS deployment target to 15.1. ([#30840](https://github.com/expo/expo/pull/30840) by [@tsapeta](https://github.com/tsapeta))
8
+
7
9
  ### 🎉 New features
8
10
 
9
11
  ### 🐛 Bug fixes
@@ -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 = { :ios => '13.4', :tvos => '13.4' }
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.13.2-canary-20240628-1ba8152",
3
+ "version": "1.0.0-canary-20240814-ce0f7d5",
4
4
  "description": "Utilities for reading JSONObjects (Android) and NSDictionaries (iOS).",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -23,5 +23,5 @@
23
23
  "author": "650 Industries, Inc.",
24
24
  "license": "MIT",
25
25
  "homepage": "https://docs.expo.dev",
26
- "gitHead": "1ba815237ed606c5ee8488f68e49773fc9735cc3"
26
+ "gitHead": "ce0f7d5c7eaec2c8d06ee4e0dc0e58cd6c1612ed"
27
27
  }