diff --git a/CHANGELOG.md b/CHANGELOG.md index 21700c20d2..4691d136c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 28.6.0 - 2017-10-31 +* [#491](https://github.com/stripe/stripe-go/pull/491) Support for exchange rates APIs + ## 28.5.0 - 2017-10-27 * [#488](https://github.com/stripe/stripe-go/pull/488) Support for listing source transactions diff --git a/VERSION b/VERSION index 5af19ef955..3881d3499b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -28.5.0 +28.6.0 diff --git a/stripe.go b/stripe.go index 98679aab45..2ac496b5f3 100644 --- a/stripe.go +++ b/stripe.go @@ -29,7 +29,7 @@ const ( const apiversion = "2017-05-25" // clientversion is the binding version -const clientversion = "28.5.0" +const clientversion = "28.6.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