From 8ddc55499424040b615298c23ad7586d935a24bb Mon Sep 17 00:00:00 2001 From: Shinya Kumagai Date: Mon, 1 Jul 2024 19:22:07 +0900 Subject: [PATCH 1/5] Release `flutter_custom_tabs_platform_interface` v2.1.0 --- flutter_custom_tabs_platform_interface/CHANGELOG.md | 4 ++++ flutter_custom_tabs_platform_interface/pubspec.yaml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/flutter_custom_tabs_platform_interface/CHANGELOG.md b/flutter_custom_tabs_platform_interface/CHANGELOG.md index 7cae5ea..be08758 100644 --- a/flutter_custom_tabs_platform_interface/CHANGELOG.md +++ b/flutter_custom_tabs_platform_interface/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.1.0 + +- Updates minimum supported SDK version to Flutter 3.10/Dart 3 ([#189](https://github.com/droibit/flutter_custom_tabs/pull/189)). + ## 2.0.0 - No changes except for version bump. diff --git a/flutter_custom_tabs_platform_interface/pubspec.yaml b/flutter_custom_tabs_platform_interface/pubspec.yaml index d5712d3..797af6a 100644 --- a/flutter_custom_tabs_platform_interface/pubspec.yaml +++ b/flutter_custom_tabs_platform_interface/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_custom_tabs_platform_interface description: A common platform interface for the flutter_custom_tabs plugin. -version: 2.0.0 +version: 2.1.0 repository: https://github.com/droibit/flutter_custom_tabs/tree/main/flutter_custom_tabs_platform_interface environment: From ac98fa6e5267119a0de91b061a68c1c30a6b500b Mon Sep 17 00:00:00 2001 From: Shinya Kumagai Date: Mon, 1 Jul 2024 21:02:28 +0900 Subject: [PATCH 2/5] Release `flutter_custom_tabs_web` v2.1.0 --- flutter_custom_tabs_web/CHANGELOG.md | 6 ++++++ flutter_custom_tabs_web/pubspec.yaml | 7 ++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/flutter_custom_tabs_web/CHANGELOG.md b/flutter_custom_tabs_web/CHANGELOG.md index b2e85e8..84c759d 100644 --- a/flutter_custom_tabs_web/CHANGELOG.md +++ b/flutter_custom_tabs_web/CHANGELOG.md @@ -1,3 +1,9 @@ +## 2.1.0 + +- Updates minimum supported SDK version to Flutter 3.10/Dart 3 ([#189](https://github.com/droibit/flutter_custom_tabs/pull/189)). +- Updates minimum required `flutter_custom_tabs_platform_interface` version to 2.1.0. +- Updates minimum required `url_launcher_web` version to 2.0.19 ([#189](https://github.com/droibit/flutter_custom_tabs/pull/189)). + ## 2.0.0 - Fixes the LICENSE file. diff --git a/flutter_custom_tabs_web/pubspec.yaml b/flutter_custom_tabs_web/pubspec.yaml index 8366d46..bdcc709 100644 --- a/flutter_custom_tabs_web/pubspec.yaml +++ b/flutter_custom_tabs_web/pubspec.yaml @@ -1,8 +1,7 @@ name: flutter_custom_tabs_web description: Web platform implementation of flutter_custom_tabs. -version: 2.0.0 +version: 2.1.0 repository: https://github.com/droibit/flutter_custom_tabs/tree/main/flutter_custom_tabs_web -publish_to: none environment: sdk: ">=3.0.0 <4.0.0" @@ -21,9 +20,7 @@ dependencies: sdk: flutter flutter_web_plugins: sdk: flutter - # flutter_custom_tabs_platform_interface: ^2.0.0 - flutter_custom_tabs_platform_interface: - path: ../flutter_custom_tabs_platform_interface + flutter_custom_tabs_platform_interface: ^2.1.0 meta: ^1.10.0 url_launcher_web: ^2.0.19 url_launcher_platform_interface: ^2.2.0 From 91012f06aca0d9bb3f2f05af8c169a3860bed439 Mon Sep 17 00:00:00 2001 From: Shinya Kumagai Date: Mon, 1 Jul 2024 21:13:38 +0900 Subject: [PATCH 3/5] Release `flutter_custom_tabs_android` v2.1.0 --- flutter_custom_tabs_android/CHANGELOG.md | 8 ++++++++ flutter_custom_tabs_android/pubspec.yaml | 7 ++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/flutter_custom_tabs_android/CHANGELOG.md b/flutter_custom_tabs_android/CHANGELOG.md index 0caf238..f556373 100644 --- a/flutter_custom_tabs_android/CHANGELOG.md +++ b/flutter_custom_tabs_android/CHANGELOG.md @@ -1,3 +1,11 @@ +## 2.1.0 + +- Updates minimum supported SDK version to Flutter 3.10/Dart 3 ([#189](https://github.com/droibit/flutter_custom_tabs/pull/189)). +- Updates minimum required `flutter_custom_tabs_platform_interface` version to 2.1.0. +- Updates minimum required `pigeon` version to 17.0.0 ([#189](https://github.com/droibit/flutter_custom_tabs/pull/189)). +- Removes the `dynamic_color` package from the example to improve maintainability ([#192](https://github.com/droibit/flutter_custom_tabs/pull/192)). +- Update navigationBarColor in `CustomTabsOptions` to use surface instead of deprecated background ([#193](https://github.com/droibit/flutter_custom_tabs/pull/193)). + ## 2.0.0+1 - Fixes the LICENSE file. diff --git a/flutter_custom_tabs_android/pubspec.yaml b/flutter_custom_tabs_android/pubspec.yaml index 965c134..f09a798 100644 --- a/flutter_custom_tabs_android/pubspec.yaml +++ b/flutter_custom_tabs_android/pubspec.yaml @@ -1,8 +1,7 @@ name: flutter_custom_tabs_android description: Android platform implementation of flutter_custom_tabs. -version: 2.0.0+1 +version: 2.1.0 repository: https://github.com/droibit/flutter_custom_tabs/tree/main/flutter_custom_tabs_android -publish_to: none environment: sdk: '>=3.0.0 <4.0.0' @@ -20,9 +19,7 @@ flutter: dependencies: flutter: sdk: flutter - # flutter_custom_tabs_platform_interface: ^2.0.0 - flutter_custom_tabs_platform_interface: - path: ../flutter_custom_tabs_platform_interface + flutter_custom_tabs_platform_interface: ^2.1.0 meta: ^1.10.0 dev_dependencies: From 33e9fabf3547ac374a4c0849e71e4774852b5b19 Mon Sep 17 00:00:00 2001 From: Shinya Kumagai Date: Mon, 1 Jul 2024 21:17:14 +0900 Subject: [PATCH 4/5] Release `flutter_custom_tabs_ios` v2.1.0 --- flutter_custom_tabs_ios/CHANGELOG.md | 9 +++++++++ flutter_custom_tabs_ios/pubspec.yaml | 7 ++----- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/flutter_custom_tabs_ios/CHANGELOG.md b/flutter_custom_tabs_ios/CHANGELOG.md index f9c08cb..f454019 100644 --- a/flutter_custom_tabs_ios/CHANGELOG.md +++ b/flutter_custom_tabs_ios/CHANGELOG.md @@ -1,3 +1,12 @@ +## 2.1.0 + +- Updates minimum supported SDK version to Flutter 3.10/Dart 3 ([#189](https://github.com/droibit/flutter_custom_tabs/pull/189)). +- Updates minimum required `flutter_custom_tabs_platform_interface` version to 2.1.0. +- Updates minimum required `pigeon` version to 17.0.0 ([#189](https://github.com/droibit/flutter_custom_tabs/pull/189)). +- Adds privacy manifest ([#186](https://github.com/droibit/flutter_custom_tabs/pull/186)). +- Updates the CocoaPods dependency to version 1.15.2 ([#186](https://github.com/droibit/flutter_custom_tabs/pull/186)). +- Refactor `SFSafariViewController` dismissal handling ([#191](https://github.com/droibit/flutter_custom_tabs/pull/191)). + ## 2.0.0 - Fixes the LICENSE file. diff --git a/flutter_custom_tabs_ios/pubspec.yaml b/flutter_custom_tabs_ios/pubspec.yaml index 830a1b1..ac04bd5 100644 --- a/flutter_custom_tabs_ios/pubspec.yaml +++ b/flutter_custom_tabs_ios/pubspec.yaml @@ -1,8 +1,7 @@ name: flutter_custom_tabs_ios description: iOS platform implementation of flutter_custom_tabs. -version: 2.0.0 +version: 2.1.0 repository: https://github.com/droibit/flutter_custom_tabs/tree/main/flutter_custom_tabs_ios -publish_to: none environment: sdk: '>=3.0.0 <4.0.0' @@ -11,9 +10,7 @@ environment: dependencies: flutter: sdk: flutter - # flutter_custom_tabs_platform_interface: ^2.0.0 - flutter_custom_tabs_platform_interface: - path: ../flutter_custom_tabs_platform_interface + flutter_custom_tabs_platform_interface: ^2.1.0 meta: ^1.10.0 dev_dependencies: From 41e215425bf7f4c0b832b8c4ae3a7c34105fcf11 Mon Sep 17 00:00:00 2001 From: Shinya Kumagai Date: Mon, 1 Jul 2024 21:28:03 +0900 Subject: [PATCH 5/5] Release `flutter_custom_tabs` v2.1.0 --- flutter_custom_tabs/CHANGELOG.md | 7 +++++++ flutter_custom_tabs/README.md | 2 +- flutter_custom_tabs/pubspec.yaml | 19 +++++-------------- 3 files changed, 13 insertions(+), 15 deletions(-) diff --git a/flutter_custom_tabs/CHANGELOG.md b/flutter_custom_tabs/CHANGELOG.md index fb0ca59..1547e28 100644 --- a/flutter_custom_tabs/CHANGELOG.md +++ b/flutter_custom_tabs/CHANGELOG.md @@ -1,3 +1,10 @@ +## 2.1.0 + +- Updates minimum supported SDK version to Flutter 3.10/Dart 3 ([#189](https://github.com/droibit/flutter_custom_tabs/pull/189)). +- Updates minimum required `flutter_custom_tabs_android/ios/web` version to 2.1.0. +- Update navigationBarColor in `CustomTabsOptions` to use surface instead of deprecated background ([#194](https://github.com/droibit/flutter_custom_tabs/pull/191)). +- Adds instructions for manually closing Custom Tabs to the README ([#194](https://github.com/droibit/flutter_custom_tabs/pull/191)). + ## 2.0.0+1 - Updates README.md with stable version dependency. diff --git a/flutter_custom_tabs/README.md b/flutter_custom_tabs/README.md index ca2fa99..ae32642 100644 --- a/flutter_custom_tabs/README.md +++ b/flutter_custom_tabs/README.md @@ -21,7 +21,7 @@ Add `flutter_custom_tabs` to the dependencies of your `pubspec.yaml`. ``` yaml dependencies: - flutter_custom_tabs: ^2.0.0 + flutter_custom_tabs: ^2.1.0 ``` > [!IMPORTANT] diff --git a/flutter_custom_tabs/pubspec.yaml b/flutter_custom_tabs/pubspec.yaml index 52ae537..7531c5c 100644 --- a/flutter_custom_tabs/pubspec.yaml +++ b/flutter_custom_tabs/pubspec.yaml @@ -1,8 +1,7 @@ name: flutter_custom_tabs description: A Flutter plugin for mobile apps to launch a URL in Custom Tabs/SFSafariViewController. -version: 2.0.0+1 +version: 2.1.0 repository: https://github.com/droibit/flutter_custom_tabs/tree/main/flutter_custom_tabs -publish_to: none environment: sdk: ">=3.0.0 <4.0.0" @@ -12,18 +11,10 @@ dependencies: flutter: sdk: flutter - # flutter_custom_tabs_platform_interface: ^2.0.0 - flutter_custom_tabs_platform_interface: - path: ../flutter_custom_tabs_platform_interface - # flutter_custom_tabs_android: ^2.0.0+1 - flutter_custom_tabs_android: - path: ../flutter_custom_tabs_android - # flutter_custom_tabs_ios: ^2.0.0 - flutter_custom_tabs_ios: - path: ../flutter_custom_tabs_ios - # flutter_custom_tabs_web: ^2.0.0 - flutter_custom_tabs_web: - path: ../flutter_custom_tabs_web + flutter_custom_tabs_platform_interface: ^2.1.0 + flutter_custom_tabs_android: ^2.1.0 + flutter_custom_tabs_ios: ^2.1.0 + flutter_custom_tabs_web: ^2.1.0 meta: ^1.10.0 dev_dependencies: