Skip to content

Commit

Permalink
Release version 920 (#1223)
Browse files Browse the repository at this point in the history
* migrate to melos version 3.0

* chore(release): publish packages

 - [email protected]

* chore(release): publish packages

 - [email protected]

* chore(release): publish packages

 - [email protected]

* chore(release): publish packages

 - [email protected]

* chore(release): publish packages

 - [email protected]

* Chore: add correct changelogs

---------

Co-authored-by: Remon <>
  • Loading branch information
remonh87 authored May 8, 2023
1 parent 9cbc9a7 commit d114816
Show file tree
Hide file tree
Showing 13 changed files with 59 additions and 12 deletions.
4 changes: 2 additions & 2 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_stripe: ^9.1.0
flutter_stripe_web: ^4.0.0
flutter_stripe: ^9.2.0
flutter_stripe_web: ^4.1.0
stripe_checkout: ^1.0.0
pay: ^1.1.0
http: ^0.13.1
Expand Down
2 changes: 1 addition & 1 deletion melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ command:
bootstrap:
usePubspecOverrides: true
packages:
- /**
- ./**
scripts:
analyze: melos exec -- flutter analyze
format: melos exec -- flutter format .
Expand Down
11 changes: 11 additions & 0 deletions packages/stripe/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 9.2.0
**Features**
- Add `BillingDetailsCollectionConfiguration` to payment sheet for collecting addresses.
- Sync with Stripe [0.27](https://github.com/stripe/stripe-react-native/releases/tag/v0.27.0).

**Fixes**
- Make project compatible with Android gradle plugin 8.0.
- New google pay button assets in order to comply with Google's new branding guidelines.
- #1219 use correct value for enum PaymentConfirmationRedirect.ifRequired.
- Add setting to render the cardfield using the standard AndroidView instead as alternative to the default ExpensiveAndroid view.

## 9.1.1
This release brings a lot of improvments to the web plugin, like later payments using SetupIntents or using tokens.
It also fixes the Apple Pay plugin that comes with new native features like order tracking and discount codes
Expand Down
8 changes: 4 additions & 4 deletions packages/stripe/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_stripe
description: Flutter library for Stripe. Supports PaymentSheets, Apple & Google Pay, SCA, PSD2 and much more.
version: 9.1.1
version: 9.2.0
homepage: https://github.com/flutter-stripe/flutter_stripe
repository: https://github.com/flutter-stripe/flutter_stripe

Expand All @@ -22,9 +22,9 @@ dependencies:
flutter:
sdk: flutter
meta: ^1.8.0
stripe_android: ^9.1.0
stripe_ios: ^9.1.0
stripe_platform_interface: ^9.1.0
stripe_android: ^9.2.0
stripe_ios: ^9.2.0
stripe_platform_interface: ^9.2.0
dev_dependencies:
flutter_test:
sdk: flutter
Expand Down
10 changes: 10 additions & 0 deletions packages/stripe_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 9.2.0
**Features**
- Add `BillingDetailsCollectionConfiguration` to payment sheet for collecting addresses.
- Sync with Stripe [0.27](https://github.com/stripe/stripe-react-native/releases/tag/v0.27.0).

**Fixes**
- Make project compatible with Android gradle plugin 8.0.
- New google pay button assets in order to comply with Google's new branding guidelines.
- #1219 use correct value for enum PaymentConfirmationRedirect.ifRequired.
- Add setting to render the cardfield using the standard AndroidView instead as alternative to the default ExpensiveAndroid view.

## 9.1.0
This release brings a lot of improvments to the web plugin, like later payments using SetupIntents or using tokens.
Expand Down
2 changes: 1 addition & 1 deletion packages/stripe_android/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stripe_android
description: Stripe platform implementation for Android
version: 9.1.0
version: 9.2.0
repository: https://github.com/flutter-stripe/flutter_stripe
homepage: https://pub.dev/packages/flutter_stripe

Expand Down
7 changes: 7 additions & 0 deletions packages/stripe_ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 9.2.0
**Features**
- Add `BillingDetailsCollectionConfiguration` to payment sheet for collecting addresses.
- Sync with Stripe [0.27](https://github.com/stripe/stripe-react-native/releases/tag/v0.27.0).

**Fixes**
- #1219 use correct value for enum PaymentConfirmationRedirect.ifRequired.

## 9.1.0
This release brings a lot of improvments to the web plugin, like later payments using SetupIntents or using tokens.
Expand Down
2 changes: 1 addition & 1 deletion packages/stripe_ios/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stripe_ios
description: Stripe platform implementation for iOS
version: 9.1.0
version: 9.2.0
repository: https://github.com/flutter-stripe/flutter_stripe
homepage: https://pub.dev/packages/flutter_stripe

Expand Down
9 changes: 9 additions & 0 deletions packages/stripe_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 9.2.0
**Features**
- Add `BillingDetailsCollectionConfiguration` to payment sheet for collecting addresses.
- Sync with Stripe [0.27](https://github.com/stripe/stripe-react-native/releases/tag/v0.27.0).

**Fixes**
- Make project compatible with Android gradle plugin 8.0.
- #1219 use correct value for enum PaymentConfirmationRedirect.ifRequired.
- Add setting to render the cardfield using the standard AndroidView instead as alternative to the default ExpensiveAndroid view.

## 9.1.0
This release brings a lot of improvments to the web plugin, like later payments using SetupIntents or using tokens.
Expand Down
2 changes: 1 addition & 1 deletion packages/stripe_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stripe_platform_interface
description: Platform interface for stripe sdk
version: 9.1.0
version: 9.2.0
repository: https://github.com/flutter-stripe/flutter_stripe
homepage: https://pub.dev/packages/flutter_stripe

Expand Down
3 changes: 3 additions & 0 deletions packages/stripe_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 4.1.0
- Update to platform interface 9.2.0.
- Small fixes for the web
## 4.0.1
- Adds support for SetupIntent
- Adds support for Tokens Api
Expand Down
4 changes: 2 additions & 2 deletions packages/stripe_web/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_stripe_web
description: Stripe sdk bindings for the Flutter web platform. This package contains the implementation of the platform interface for web.
version: 4.0.1
version: 4.1.0
homepage: https://github.com/flutter-stripe/flutter_stripe

environment:
Expand All @@ -13,7 +13,7 @@ dependencies:
flutter_web_plugins:
sdk: flutter
freezed_annotation: ^2.0.3
stripe_platform_interface: ^9.1.0
stripe_platform_interface: ^9.2.0
js: ^0.6.3
stripe_js: ^3.0.0

Expand Down
7 changes: 7 additions & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: flutter_stripe_mono_repo

environment:
sdk: '>=2.18.0 <3.0.0'

dev_dependencies:
melos: ^3.0.0

0 comments on commit d114816

Please sign in to comment.