expo-updates-interface 0.7.0 → 0.8.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,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.8.0 — 2022-10-25
14
+
15
+ ### 🛠 Breaking changes
16
+
17
+ - Bumped iOS deployment target to 13.0 and deprecated support for iOS 12. ([#18873](https://github.com/expo/expo/pull/18873) by [@tsapeta](https://github.com/tsapeta))
18
+
13
19
  ## 0.7.0 — 2022-07-07
14
20
 
15
21
  ### 💡 Others
@@ -4,7 +4,7 @@ apply plugin: 'kotlin-android-extensions'
4
4
  apply plugin: 'maven-publish'
5
5
 
6
6
  group = 'host.exp.exponent'
7
- version = '0.7.0'
7
+ version = '0.8.0'
8
8
 
9
9
  buildscript {
10
10
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -75,7 +75,7 @@ android {
75
75
  minSdkVersion safeExtGet("minSdkVersion", 21)
76
76
  targetSdkVersion safeExtGet("targetSdkVersion", 31)
77
77
  versionCode 1
78
- versionName '0.7.0'
78
+ versionName '0.8.0'
79
79
  }
80
80
  lintOptions {
81
81
  abortOnError false
@@ -10,7 +10,7 @@ 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.platform = :ios, '12.0'
13
+ s.platform = :ios, '13.0'
14
14
  s.source = { git: 'https://github.com/expo/expo.git' }
15
15
  s.static_framework = true
16
16
  s.source_files = 'EXUpdatesInterface/**/*.{h,m}'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates-interface",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "Native interface for modules that optionally depend on expo-updates, e.g. expo-dev-launcher.",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -23,5 +23,5 @@
23
23
  "peerDependencies": {
24
24
  "expo": "*"
25
25
  },
26
- "gitHead": "6e131f2da851a47c3a24eb3d6fc971a1a7822086"
26
+ "gitHead": "957cf0793ac316152e694cbe352953e07bffcb45"
27
27
  }