Skip to content

Commit

Permalink
Bump version to 57.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-stripe committed Feb 19, 2019
1 parent 870f7c4 commit f122f3d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 57.0.0 - 2019-02-19
* [#782](https://github.com/stripe/stripe-go/pull/782) Changes related to the new API version `2019-02-19`:
* The library is now pinned to API version `2019-02-19`
* Numerous changes to the `Account` resource and APIs:
* The `legal_entity` property on the Account API resource has been replaced with `individual`, `company`, and `business_type`
* The `verification` hash has been replaced with a `requirements` hash
* Multiple top-level properties were moved to the `settings` hash
* The `keys` property on `Account` has been removed. Platforms should authenticate as their connected accounts with their own key via the `Stripe-Account` [header](https://stripe.com/docs/connect/authentication#authentication-via-the-stripe-account-header)
* The `requested_capabilities` property on `Account` creation is now required for accounts in the US
* The deprecated parameter `save_source_to_customer` on `PaymentIntent` has now been removed. Use `save_payment_method` instead

## 56.1.0 - 2019-02-18
* [#737](https://github.com/stripe/stripe-go/pull/737) Add support for setting `request_capabilities` and retrieving `capabilities` on `Account`
* [#793](https://github.com/stripe/stripe-go/pull/793) Add support for `save_payment_method` on `PaymentIntent`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ suffix* in the path like so:
module github.com/my/package

require (
github.com/stripe/stripe-go v56.1.0
github.com/stripe/stripe-go v57.0.0
)
```

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
56.1.0
57.0.0
2 changes: 1 addition & 1 deletion stripe.go
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ const apiURL = "https://api.stripe.com"
const apiversion = "2019-02-11"

// clientversion is the binding version
const clientversion = "56.1.0"
const clientversion = "57.0.0"

// 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
Expand Down

0 comments on commit f122f3d

Please sign in to comment.