expo-eas-client 0.8.0 → 0.9.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.9.0 — 2023-09-15
14
+
15
+ ### 🎉 New features
16
+
17
+ - Added support for Apple tvOS. ([#24329](https://github.com/expo/expo/pull/24329) by [@douglowder](https://github.com/douglowder))
18
+
13
19
  ## 0.8.0 — 2023-09-04
14
20
 
15
21
  ### 🎉 New features
@@ -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.8.0'
6
+ version = '0.9.0'
7
7
 
8
8
  buildscript {
9
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -70,7 +70,7 @@ android {
70
70
  minSdkVersion safeExtGet("minSdkVersion", 21)
71
71
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
72
72
  versionCode 1
73
- versionName "0.8.0"
73
+ versionName "0.9.0"
74
74
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
75
75
  }
76
76
  testOptions {
@@ -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, '13.0'
13
+ s.platforms = { :ios => '13.0', :tvos => '13.0' }
14
14
  s.swift_version = '5.4'
15
15
  s.source = { git: '' }
16
16
  s.static_framework = true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-eas-client",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "Stable client identifier for EAS services",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -37,5 +37,5 @@
37
37
  "devDependencies": {
38
38
  "expo-module-scripts": "^3.0.0"
39
39
  },
40
- "gitHead": "79607a7325f47aa17c36d266100d09a4ff2cc544"
40
+ "gitHead": "ee2c866ba3c7fbc35ff2a3e896041cf15d3bd7c5"
41
41
  }