Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit b93268e

Browse files
authored
[url_launcher, url_launcher_web] Fix API dependencies. (#2984)
1 parent 7c49361 commit b93268e

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

packages/url_launcher/url_launcher/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 5.5.2
2+
3+
* Depend explicitly on the `platform_interface` package that adds the `webOnlyWindowName` parameter.
4+
15
## 5.5.1
26

37
* Added webOnlyWindowName parameter to launch()

packages/url_launcher/url_launcher/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: url_launcher
22
description: Flutter plugin for launching a URL on Android and iOS. Supports
33
web, phone, SMS, and email schemes.
44
homepage: https://github.com/flutter/plugins/tree/master/packages/url_launcher/url_launcher
5-
version: 5.5.1
5+
version: 5.5.2
66

77
flutter:
88
plugin:
@@ -22,13 +22,13 @@ flutter:
2222
dependencies:
2323
flutter:
2424
sdk: flutter
25-
url_launcher_platform_interface: ^1.0.4
25+
url_launcher_platform_interface: ^1.0.8
2626
# The design on https://flutter.dev/go/federated-plugins was to leave
2727
# this constraint as "any". We cannot do it right now as it fails pub publish
2828
# validation, so we set a ^ constraint.
2929
# TODO(amirh): Revisit this (either update this part in the design or the pub tool).
3030
# https://github.com/flutter/flutter/issues/46264
31-
url_launcher_web: ^0.1.0+1
31+
url_launcher_web: ^0.1.3
3232
url_launcher_linux: ^0.0.1
3333
url_launcher_macos: ^0.0.1
3434

packages/url_launcher/url_launcher_web/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.1.3+1
2+
3+
- Depend explicitly on the `platform_interface` package that adds the `webOnlyWindowName` parameter.
4+
15
# 0.1.3
26

37
- Added webOnlyWindowName parameter to launch()

packages/url_launcher/url_launcher_web/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ homepage: https://github.com/flutter/plugins/tree/master/packages/url_launcher/u
44
# 0.1.y+z is compatible with 1.0.0, if you land a breaking change bump
55
# the version to 2.0.0.
66
# See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
7-
version: 0.1.3
7+
version: 0.1.3+1
88

99
flutter:
1010
plugin:
@@ -14,7 +14,7 @@ flutter:
1414
fileName: url_launcher_web.dart
1515

1616
dependencies:
17-
url_launcher_platform_interface: ^1.0.1
17+
url_launcher_platform_interface: ^1.0.8
1818
platform_detect: ^1.4.0
1919
flutter:
2020
sdk: flutter

0 commit comments

Comments
 (0)