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: 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: 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: 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: 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