expo-linking 7.0.0 → 7.0.1

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
+ ## 7.0.1 — 2024-10-24
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [iOS] Add tvOS to podspec. ([#32255](https://github.com/expo/expo/pull/32255) by [@douglowder](https://github.com/douglowder))
18
+
13
19
  ## 7.0.0 — 2024-10-22
14
20
 
15
21
  ### 🛠 Breaking changes
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'expo.modules.linking'
4
- version = '7.0.0'
4
+ version = '7.0.1'
5
5
 
6
6
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
7
7
  apply from: expoModulesCorePlugin
@@ -35,7 +35,7 @@ android {
35
35
  namespace "expo.modules.linking"
36
36
  defaultConfig {
37
37
  versionCode 1
38
- versionName "7.0.0"
38
+ versionName "7.0.1"
39
39
  }
40
40
  lintOptions {
41
41
  abortOnError false
@@ -11,7 +11,8 @@ Pod::Spec.new do |s|
11
11
  s.author = package['author']
12
12
  s.homepage = package['homepage']
13
13
  s.platforms = {
14
- :ios => '15.1'
14
+ :ios => '15.1',
15
+ :tvos => '15.1'
15
16
  }
16
17
  s.source = { git: 'https://github.com/expo/expo.git' }
17
18
  s.static_framework = true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-linking",
3
- "version": "7.0.0",
3
+ "version": "7.0.1",
4
4
  "description": "Create and open deep links universally",
5
5
  "main": "build/Linking.js",
6
6
  "types": "build/Linking.d.ts",
@@ -51,5 +51,5 @@
51
51
  "jest": {
52
52
  "preset": "expo-module-scripts"
53
53
  },
54
- "gitHead": "7c7d2362fff23bec26cd145ed34edd9c403551bd"
54
+ "gitHead": "0a07b965c4bef67e7718355a0dc770d524ad3cee"
55
55
  }