expo-updates-interface 0.2.2 → 0.5.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,27 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.5.0 — 2021-12-03
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 0.4.0 — 2021-09-28
18
+
19
+ ### 🐛 Bug fixes
20
+
21
+ - Removed unnecessary gradle dependency on expo-modules-core. ([#14464](https://github.com/expo/expo/pull/14464) by [@esamelson](https://github.com/esamelson))
22
+ - Fix building errors from use_frameworks! in Podfile. ([#14523](https://github.com/expo/expo/pull/14523) by [@kudo](https://github.com/kudo))
23
+
24
+ ## 0.3.1 — 2021-09-16
25
+
26
+ ### 🛠 Breaking changes
27
+
28
+ - Dropped support for iOS 11.0 ([#14383](https://github.com/expo/expo/pull/14383) by [@cruzach](https://github.com/cruzach))
29
+
30
+ ## 0.3.0 — 2021-09-09
31
+
32
+ _This version does not introduce any user-facing changes._
33
+
13
34
  ## 0.2.2 — 2021-07-05
14
35
 
15
36
  ### 🐛 Bug fixes
@@ -4,7 +4,7 @@ apply plugin: 'kotlin-android-extensions'
4
4
  apply plugin: 'maven'
5
5
 
6
6
  group = 'host.exp.exponent'
7
- version = '0.2.2'
7
+ version = '0.5.0'
8
8
 
9
9
  buildscript {
10
10
  // Simple helper that allows the root project to override versions declared by this library.
@@ -49,11 +49,16 @@ uploadArchives {
49
49
  android {
50
50
  compileSdkVersion safeExtGet("compileSdkVersion", 29)
51
51
 
52
+ compileOptions {
53
+ sourceCompatibility JavaVersion.VERSION_1_8
54
+ targetCompatibility JavaVersion.VERSION_1_8
55
+ }
56
+
52
57
  defaultConfig {
53
58
  minSdkVersion safeExtGet("minSdkVersion", 21)
54
59
  targetSdkVersion safeExtGet("targetSdkVersion", 28)
55
60
  versionCode 1
56
- versionName '0.2.2'
61
+ versionName '0.5.0'
57
62
  }
58
63
  lintOptions {
59
64
  abortOnError false
@@ -0,0 +1 @@
1
+ // noop file for cocoapods to generated modulemap file
@@ -10,9 +10,14 @@ 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, '11.0'
13
+ s.platform = :ios, '12.0'
14
14
  s.source = { git: 'https://github.com/expo/expo.git' }
15
+ s.static_framework = true
15
16
  s.source_files = 'EXUpdatesInterface/**/*.{h,m}'
16
17
  s.preserve_paths = 'EXUpdatesInterface/**/*.{h,m}'
17
18
  s.requires_arc = true
19
+
20
+ s.pod_target_xcconfig = {
21
+ 'DEFINES_MODULE' => 'YES',
22
+ }
18
23
  end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates-interface",
3
- "version": "0.2.2",
3
+ "version": "0.5.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": [
@@ -18,6 +18,10 @@
18
18
  },
19
19
  "author": "650 Industries, Inc.",
20
20
  "license": "MIT",
21
- "homepage": "https://docs.expo.io/versions/latest/sdk/module-template",
22
- "gitHead": "16822f15335b3870a042ce29356e5b387c8e44a4"
21
+ "homepage": "https://docs.expo.dev/versions/latest/sdk/module-template",
22
+ "dependencies": {},
23
+ "peerDependencies": {
24
+ "expo": "*"
25
+ },
26
+ "gitHead": "4ac89934e2acc4ef1fad59f338d9019fe2d92240"
23
27
  }