updated to stable 6 version

This commit is contained in:
Lorenzo Pichilli 2023-12-25 18:18:33 +01:00
parent e28f73d055
commit 751a104716
16 changed files with 51 additions and 26 deletions

View File

@ -1,3 +1,8 @@
## 6.0.0
- Updated minimum platform interface and implementation versions
- Merged "Added == operator and hashCode to WebUri" [#1941](https://github.com/pichillilorenzo/flutter_inappwebview/pull/1941) (thanks to [daisukeueta](https://github.com/daisukeueta))
## 6.0.0-rc.3
- Updated minimum platform interface and implementation versions

View File

@ -1,6 +1,6 @@
name: flutter_inappwebview
description: A Flutter plugin that allows you to add an inline webview, to use an headless webview, and to open an in-app browser window.
version: 6.0.0-rc.3
version: 6.0.0
homepage: https://inappwebview.dev/
repository: https://github.com/pichillilorenzo/flutter_inappwebview
issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues
@ -18,11 +18,11 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_inappwebview_platform_interface: ^1.0.9
flutter_inappwebview_android: ^1.0.11
flutter_inappwebview_ios: ^1.0.12
flutter_inappwebview_macos: ^1.0.10
flutter_inappwebview_web: ^1.0.7
flutter_inappwebview_platform_interface: ^1.0.10
flutter_inappwebview_android: ^1.0.12
flutter_inappwebview_ios: ^1.0.13
flutter_inappwebview_macos: ^1.0.11
flutter_inappwebview_web: ^1.0.8
dev_dependencies:
flutter_test:

View File

@ -1,3 +1,7 @@
## 1.0.12
- Updated `flutter_inappwebview_platform_interface` version dependency to `^1.0.10`
## 1.0.11
- Updated `flutter_inappwebview_platform_interface` version dependency to `^1.0.9`

View File

@ -94,10 +94,10 @@ packages:
dependency: transitive
description:
name: flutter_inappwebview_platform_interface
sha256: "9b0bce22162f05af36dc7480dbe43650414704591df263810d773a7ba4139447"
sha256: "545fd4c25a07d2775f7d5af05a979b2cac4fbf79393b0a7f5d33ba39ba4f6187"
url: "https://pub.dev"
source: hosted
version: "1.0.9"
version: "1.0.10"
flutter_lints:
dependency: "direct dev"
description:

View File

@ -1,6 +1,6 @@
name: flutter_inappwebview_android
description: Android implementation of the flutter_inappwebview plugin.
version: 1.0.11
version: 1.0.12
homepage: https://inappwebview.dev/
repository: https://github.com/pichillilorenzo/flutter_inappwebview/tree/master/flutter_inappwebview_android
issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues
@ -18,7 +18,7 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_inappwebview_platform_interface: ^1.0.9
flutter_inappwebview_platform_interface: ^1.0.10
dev_dependencies:
flutter_test:

View File

@ -1,3 +1,7 @@
## 1.0.13
- Updated `flutter_inappwebview_platform_interface` version dependency to `^1.0.10`
## 1.0.12
- Updated `flutter_inappwebview_platform_interface` version dependency to `^1.0.9`

View File

@ -89,15 +89,15 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.12"
version: "1.0.13"
flutter_inappwebview_platform_interface:
dependency: transitive
description:
name: flutter_inappwebview_platform_interface
sha256: "9b0bce22162f05af36dc7480dbe43650414704591df263810d773a7ba4139447"
sha256: "545fd4c25a07d2775f7d5af05a979b2cac4fbf79393b0a7f5d33ba39ba4f6187"
url: "https://pub.dev"
source: hosted
version: "1.0.9"
version: "1.0.10"
flutter_lints:
dependency: "direct dev"
description:

View File

@ -1,6 +1,6 @@
name: flutter_inappwebview_ios
description: iOS implementation of the flutter_inappwebview plugin.
version: 1.0.12
version: 1.0.13
homepage: https://inappwebview.dev/
repository: https://github.com/pichillilorenzo/flutter_inappwebview/tree/master/flutter_inappwebview_ios
issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues
@ -18,7 +18,7 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_inappwebview_platform_interface: ^1.0.9
flutter_inappwebview_platform_interface: ^1.0.10
dev_dependencies:
flutter_test:

View File

@ -1,3 +1,7 @@
## 1.0.11
- Updated `flutter_inappwebview_platform_interface` version dependency to `^1.0.10`
## 1.0.10
- Updated `flutter_inappwebview_platform_interface` version dependency to `^1.0.9`

View File

@ -89,15 +89,15 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.10"
version: "1.0.11"
flutter_inappwebview_platform_interface:
dependency: transitive
description:
name: flutter_inappwebview_platform_interface
sha256: "9b0bce22162f05af36dc7480dbe43650414704591df263810d773a7ba4139447"
sha256: "545fd4c25a07d2775f7d5af05a979b2cac4fbf79393b0a7f5d33ba39ba4f6187"
url: "https://pub.dev"
source: hosted
version: "1.0.9"
version: "1.0.10"
flutter_lints:
dependency: "direct dev"
description:

View File

@ -1,6 +1,6 @@
name: flutter_inappwebview_macos
description: macOS implementation of the flutter_inappwebview plugin.
version: 1.0.10
version: 1.0.11
homepage: https://inappwebview.dev/
repository: https://github.com/pichillilorenzo/flutter_inappwebview/tree/master/flutter_inappwebview_macos
issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues
@ -18,7 +18,7 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_inappwebview_platform_interface: ^1.0.9
flutter_inappwebview_platform_interface: ^1.0.10
dev_dependencies:
flutter_test:

View File

@ -1,3 +1,7 @@
## 1.0.10
- Merged "Added == operator and hashCode to WebUri" [#1941](https://github.com/pichillilorenzo/flutter_inappwebview/pull/1941) (thanks to [daisukeueta](https://github.com/daisukeueta))
## 1.0.9
- Fix typos (thanks to [michalsrutek](https://github.com/michalsrutek))

View File

@ -1,6 +1,6 @@
name: flutter_inappwebview_platform_interface
description: A common platform interface for the flutter_inappwebview plugin.
version: 1.0.9
version: 1.0.10
homepage: https://inappwebview.dev/
repository: https://github.com/pichillilorenzo/flutter_inappwebview/tree/master/flutter_inappwebview_platform_interface
issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues

View File

@ -1,3 +1,7 @@
## 1.0.8
- Updated `flutter_inappwebview_platform_interface` version dependency to `^1.0.10`
## 1.0.7
- Updated `flutter_inappwebview_platform_interface` version dependency to `^1.0.9`

View File

@ -87,17 +87,17 @@ packages:
dependency: transitive
description:
name: flutter_inappwebview_platform_interface
sha256: "9b0bce22162f05af36dc7480dbe43650414704591df263810d773a7ba4139447"
sha256: "545fd4c25a07d2775f7d5af05a979b2cac4fbf79393b0a7f5d33ba39ba4f6187"
url: "https://pub.dev"
source: hosted
version: "1.0.9"
version: "1.0.10"
flutter_inappwebview_web:
dependency: "direct main"
description:
path: ".."
relative: true
source: path
version: "1.0.7"
version: "1.0.8"
flutter_lints:
dependency: "direct dev"
description:

View File

@ -1,6 +1,6 @@
name: flutter_inappwebview_web
description: Web implementation of the flutter_inappwebview plugin.
version: 1.0.7
version: 1.0.8
homepage: https://inappwebview.dev/
repository: https://github.com/pichillilorenzo/flutter_inappwebview/tree/master/flutter_inappwebview_web
issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues
@ -21,7 +21,7 @@ dependencies:
flutter_web_plugins:
sdk: flutter
js: ^0.6.4
flutter_inappwebview_platform_interface: ^1.0.9
flutter_inappwebview_platform_interface: ^1.0.10
dev_dependencies:
flutter_test: