diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dd5771234..626b8c521a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 61.25.0 - 2019-07-30 +* [#910](https://github.com/stripe/stripe-go/pull/910) Add `balancetransaction` package with a `Get` and `List` methods + ## 61.24.0 - 2019-07-30 * [#906](https://github.com/stripe/stripe-go/pull/906) Add decline code type and constants (for use with card errors) diff --git a/README.md b/README.md index 2879e5a549..f6fea90ad2 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ suffix* in the path like so: module github.com/my/package require ( - github.com/stripe/stripe-go v61.24.0 + github.com/stripe/stripe-go v61.25.0 ) ``` diff --git a/VERSION b/VERSION index f09ba5a0c1..10b735f8e2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -61.24.0 +61.25.0 diff --git a/stripe.go b/stripe.go index 6cd4b3bc0a..d99bcedf38 100644 --- a/stripe.go +++ b/stripe.go @@ -915,7 +915,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "61.24.0" +const clientversion = "61.25.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