expo-linking 7.0.2 → 7.0.3

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.3 — 2024-11-19
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [iOS] Fix `addEventListener` and `useURL` hook. ([#33076](https://github.com/expo/expo/pull/33076) by [@gabrieldonadel](https://github.com/gabrieldonadel))
18
+
13
19
  ## 7.0.2 — 2024-10-25
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'expo.modules.linking'
4
- version = '7.0.2'
4
+ version = '7.0.3'
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.2"
38
+ versionName "7.0.3"
39
39
  }
40
40
  lintOptions {
41
41
  abortOnError false
@@ -4,6 +4,6 @@ public class LinkingAppDelegateSubscriber: ExpoAppDelegateSubscriber {
4
4
  public func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
5
5
  ExpoLinkingRegistry.shared.initialURL = url
6
6
  NotificationCenter.default.post(name: onURLReceivedNotification, object: self, userInfo: ["url": url])
7
- return true
7
+ return false
8
8
  }
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-linking",
3
- "version": "7.0.2",
3
+ "version": "7.0.3",
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": "5ad642a63afa9190ceb4e57dd52c8bdf71d93dd8"
54
+ "gitHead": "128718d43bac2eaed764b3551469b95400f2363e"
55
55
  }