diff --git a/example/pubspec.yaml b/example/pubspec.yaml index a9e98becd..ac058e547 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -10,7 +10,7 @@ environment: dependencies: flutter: sdk: flutter - flutter_stripe: ^1.0.2 + flutter_stripe: ^1.1.0 pay: ^1.0.1 http: ^0.13.1 diff --git a/packages/stripe/CHANGELOG.md b/packages/stripe/CHANGELOG.md index 53b2df3b4..f281ec639 100644 --- a/packages/stripe/CHANGELOG.md +++ b/packages/stripe/CHANGELOG.md @@ -1,3 +1,16 @@ +## 1.1.0 + +** Breaking changes ** +- Make `paymentIntentClientSecret` nullable for SetupPaymentSheetParameters and add setupIntentClientSecret. +- Rename `ThreeDSecureSubmitButtonThemeData` to `ThreeDSecureButtonThemeData` in order to facilitate for a generic class to customise 3D secure buttons. + +Other changes +- Sync with latest Stripe sdk. +- Fix #147 add `urlscheme to initialise method`. Thanks to @dariuspo. +- Improved focus behavior on Cardfield. +- Add `dangerouslyGetFullCardDetails` and `FontFamily` to cardfield. +- Better debug logging in case something goes wrong. + ## 1.0.2 - Fix [#68](https://github.com/flutter-stripe/flutter_stripe/issues/68) Android leaks and activity for result propagation diff --git a/packages/stripe/pubspec.yaml b/packages/stripe/pubspec.yaml index 73553cc9e..666ac0d8c 100644 --- a/packages/stripe/pubspec.yaml +++ b/packages/stripe/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_stripe description: Flutter library for Stripe. Supports PaymentSheets, Apple & Google Pay, SCA, PSD2 and much more. -version: 1.0.2 +version: 1.1.0 homepage: https://github.com/flutter-stripe/flutter_stripe repository: https://github.com/flutter-stripe/flutter_stripe @@ -11,9 +11,9 @@ environment: dependencies: flutter: sdk: flutter - stripe_android: ^1.0.2 - stripe_ios: ^1.0.2 - stripe_platform_interface: ^1.0.2 + stripe_android: ^1.1.0 + stripe_ios: ^1.1.0 + stripe_platform_interface: ^1.1.0 dev_dependencies: flutter_test: sdk: flutter diff --git a/packages/stripe_android/CHANGELOG.md b/packages/stripe_android/CHANGELOG.md index 9fae7ce02..906fcb664 100644 --- a/packages/stripe_android/CHANGELOG.md +++ b/packages/stripe_android/CHANGELOG.md @@ -1,3 +1,16 @@ +## 1.1.0 + +** Breaking changes ** +- Make `paymentIntentClientSecret` nullable for SetupPaymentSheetParameters and add setupIntentClientSecret. +- Rename `ThreeDSecureSubmitButtonThemeData` to `ThreeDSecureButtonThemeData` in order to facilitate for a generic class to customise 3D secure buttons. + +Other changes +- Sync with latest Stripe sdk. +- Fix #147 add `urlscheme to initialise method`. Thanks to @dariuspo. +- Improved focus behavior on Cardfield. +- Add `dangerouslyGetFullCardDetails` and `FontFamily` to cardfield. +- Better debug logging in case something goes wrong. + ## 1.0.2 - Fix [#68](https://github.com/flutter-stripe/flutter_stripe/issues/68) Android leaks and activity for result propagation diff --git a/packages/stripe_android/pubspec.yaml b/packages/stripe_android/pubspec.yaml index cc8723933..99ef65ac1 100644 --- a/packages/stripe_android/pubspec.yaml +++ b/packages/stripe_android/pubspec.yaml @@ -1,6 +1,6 @@ name: stripe_android description: Stripe platform implementation for Android -version: 1.0.2 +version: 1.1.0 repository: https://github.com/flutter-stripe/flutter_stripe homepage: https://pub.dev/packages/flutter_stripe diff --git a/packages/stripe_ios/CHANGELOG.md b/packages/stripe_ios/CHANGELOG.md index f2c6bf34d..283705227 100644 --- a/packages/stripe_ios/CHANGELOG.md +++ b/packages/stripe_ios/CHANGELOG.md @@ -1,3 +1,16 @@ +## 1.1.0 + +** Breaking changes ** +- Make `paymentIntentClientSecret` nullable for SetupPaymentSheetParameters and add setupIntentClientSecret. +- Rename `ThreeDSecureSubmitButtonThemeData` to `ThreeDSecureButtonThemeData` in order to facilitate for a generic class to customise 3D secure buttons. + +Other changes +- Sync with latest Stripe sdk. +- Fix #147 add `urlscheme to initialise method`. Thanks to @dariuspo. +- Improved focus behavior on Cardfield. +- Add `dangerouslyGetFullCardDetails` and `FontFamily` to cardfield. +- Better debug logging in case something goes wrong. + ## 1.0.2 - Fix [#68](https://github.com/flutter-stripe/flutter_stripe/issues/68) Android leaks and activity for result propagation diff --git a/packages/stripe_ios/pubspec.yaml b/packages/stripe_ios/pubspec.yaml index bc847b143..f2f12c9d3 100644 --- a/packages/stripe_ios/pubspec.yaml +++ b/packages/stripe_ios/pubspec.yaml @@ -1,6 +1,6 @@ name: stripe_ios description: Stripe platform implementation for iOS -version: 1.0.2 +version: 1.1.0 repository: https://github.com/flutter-stripe/flutter_stripe homepage: https://pub.dev/packages/flutter_stripe diff --git a/packages/stripe_platform_interface/CHANGELOG.md b/packages/stripe_platform_interface/CHANGELOG.md index fb58f3e69..585f1b0b8 100644 --- a/packages/stripe_platform_interface/CHANGELOG.md +++ b/packages/stripe_platform_interface/CHANGELOG.md @@ -1,3 +1,16 @@ +## 1.1.0 + +** Breaking changes ** +- Make `paymentIntentClientSecret` nullable for SetupPaymentSheetParameters and add setupIntentClientSecret. +- Rename `ThreeDSecureSubmitButtonThemeData` to `ThreeDSecureButtonThemeData` in order to facilitate for a generic class to customise 3D secure buttons. + +Other changes +- Sync with latest Stripe sdk. +- Fix #147 add `urlscheme to initialise method`. Thanks to @dariuspo. +- Improved focus behavior on Cardfield. +- Add `dangerouslyGetFullCardDetails` and `FontFamily` to cardfield. +- Better debug logging in case something goes wrong. + ## 1.0.2 - Fix [#68](https://github.com/flutter-stripe/flutter_stripe/issues/68) Android leaks and activity for result propagation diff --git a/packages/stripe_platform_interface/pubspec.yaml b/packages/stripe_platform_interface/pubspec.yaml index 28d3869e0..0d6dad250 100644 --- a/packages/stripe_platform_interface/pubspec.yaml +++ b/packages/stripe_platform_interface/pubspec.yaml @@ -1,6 +1,6 @@ name: stripe_platform_interface description: Platform interface for stripe sdk -version: 1.0.2 +version: 1.1.0 repository: https://github.com/flutter-stripe/flutter_stripe homepage: https://pub.dev/packages/flutter_stripe