Skip to content

Commit

Permalink
Publish pay v1.2.0-beta01
Browse files Browse the repository at this point in the history
  • Loading branch information
JlUgia committed Jan 19, 2024
1 parent e5ae02d commit 576fabe
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
9 changes: 7 additions & 2 deletions pay/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
# Changelog

## 1.2.0-beta01 (2024-01-19)
### ⚠ BREAKING CHANGE
Update the Google Pay button to support card last 4 digits, and extend configuration capabilities.

### Features

* Introduce the new dynamic button for Google Pay on Android.
* Add a configuration parameter to change the corner roundness of the button on Android (#187).
* ⚠ Introduce the new dynamic button for Google Pay on Android. See the [changelog for `pay_android:1.1.0-beta01`](../pay_android/CHANGELOG.md#110-beta01-2024-01-19) for a detailed breakdown of changes.
* Update minimum supported SDK version to Flutter 3.10/Dart 3.0 (#233).
* Use `flutter_lints` for static checks (#182, #210).

### Retired APIs

* ⚠ Removed the `Pay.withAssets` constructor. See the [readme in the `pay_platform_interface` package](../pay_platform_interface/README.md#usage) to review the recommended logic to initialize the `Pay` client.

## 1.1.2 (2023-07-31)
* Update `pay_android` to 1.0.11, which includes lifecycle fixes.

Expand Down
2 changes: 1 addition & 1 deletion pay/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To start using this plugin, add `pay` as a [dependency in your pubspec.yaml file

```yaml
dependencies:
pay: ^1.1.2
pay: ^1.2.0-beta01
```
Define the configuration for your payment provider(s). Take a look at the parameters available in the documentation for [Apple Pay](https://developer.apple.com/documentation/passkit/pkpaymentrequest) and [Google Pay](https://developers.google.com/pay/api/android/reference/request-objects), and explore the [sample configurations in this package](https://github.com/google-pay/flutter-plugin/tree/main/pay/example/lib/payment_configurations.dart).
Expand Down
8 changes: 4 additions & 4 deletions pay/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

name: pay
description: A plug-in to add support for payments on Flutter applications.
version: 1.1.2
version: 1.2.0-beta01
repository: https://github.com/google-pay/flutter-plugin/tree/main/pay

environment:
Expand All @@ -34,9 +34,9 @@ dependencies:
sdk: flutter
flutter_localizations:
sdk: flutter
pay_android: ^1.0.11
pay_ios: ^1.0.9
pay_platform_interface: ^1.0.3
pay_android: ^1.1.0-beta01
pay_ios: ^1.0.10
pay_platform_interface: ^1.0.4
meta: ^1.10.0

dev_dependencies:
Expand Down

0 comments on commit 576fabe

Please sign in to comment.