Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release flutter_custom_tabs v2.1.0 #196

Merged
merged 5 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions flutter_custom_tabs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion flutter_custom_tabs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
19 changes: 5 additions & 14 deletions flutter_custom_tabs/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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:
Expand Down
8 changes: 8 additions & 0 deletions flutter_custom_tabs_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
7 changes: 2 additions & 5 deletions flutter_custom_tabs_android/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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'
Expand All @@ -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:
Expand Down
9 changes: 9 additions & 0 deletions flutter_custom_tabs_ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
7 changes: 2 additions & 5 deletions flutter_custom_tabs_ios/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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'
Expand All @@ -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:
Expand Down
4 changes: 4 additions & 0 deletions flutter_custom_tabs_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion flutter_custom_tabs_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
6 changes: 6 additions & 0 deletions flutter_custom_tabs_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
7 changes: 2 additions & 5 deletions flutter_custom_tabs_web/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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
Expand Down
Loading