From 1770dfba8bb7afd4c4ca071be71ed3981ce3d237 Mon Sep 17 00:00:00 2001 From: Richard Marmorstein Date: Thu, 2 Feb 2023 17:33:34 -0600 Subject: [PATCH] Bump version to 74.8.0-beta.1 --- CHANGELOG.md | 16 +++++++++++++++- VERSION | 2 +- stripe.go | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd2f3c2936..a9a8d04453 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 74.8.0-beta.1 - 2023-02-02 +* [#1601](https://github.com/stripe/stripe-go/pull/1601) API Updates for beta branch + * Updated stable APIs to the latest version + * Add support for new resource `FinancialConnections.Transaction` + * Add support for `List` method on resource `Transaction` + * Add support for `Prefetch` on `-PaymentMethodOptionsUsBankAccountFinancialConnectionsParams` and `-PaymentMethodOptionsUsBankAccountFinancialConnections` across several APIs. + * * Add support for `InferredBalancesRefresh`, `Subscriptions`, and `TransactionRefresh` on `FinancialConnectionsAccount` + * Add support for `ManualEntry` on `FinancialConnectionsSessionParams` and `FinancialConnectionsSession` + * Add support for `StatusDetails` and `Status` on `FinancialConnectionsSession` + * Add support for new value `ownership` on enums `InvoicePaymentSettingsPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions` and `SubscriptionPaymentSettingsPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions` + * Add support for `AccountNumber` on `PaymentMethodUsBankAccount` + * Remove support for `ID` on `QuoteLinesStartsAtLineEndsAtParams` + + ## 74.7.0 - 2023-02-02 * [#1600](https://github.com/stripe/stripe-go/pull/1600) API Updates * Add support for `Resume` method on resource `Subscription` @@ -13,7 +27,7 @@ * Add support for `InvoiceCreation` on `PaymentLinkParams` and `PaymentLink` * Add support for new value `paused` on enum `SubscriptionStatus` * Add support for new value `funding_reversed` on enum `CustomerCashBalanceTransactionType` - + * [#1562](https://github.com/stripe/stripe-go/pull/1562) add missing verify with micro-deposits next action ## 74.7.0-beta.2 - 2023-01-26 diff --git a/VERSION b/VERSION index d36d195d3e..26991f6bcd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -74.7.0-beta.2 +74.8.0-beta.1 diff --git a/stripe.go b/stripe.go index 9d68561870..55f5d6e3ab 100644 --- a/stripe.go +++ b/stripe.go @@ -1198,7 +1198,7 @@ func StringSlice(v []string) []*string { // // clientversion is the binding version -const clientversion = "74.7.0-beta.2" +const clientversion = "74.8.0-beta.1" // defaultHTTPTimeout is the default timeout on the http.Client used by the library. // This is chosen to be consistent with the other Stripe language libraries and