diff --git a/CHANGELOG.md b/CHANGELOG.md index 137f2b04c6..a63386140e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 29.0.0 - 2018-02-14 +* [#518](https://github.com/stripe/stripe-go/pull/518) Bump API version to 2018-02-06 and add support for Product & Plan API + ## 28.12.0 - 2018-02-09 * [#517](https://github.com/stripe/stripe-go/pull/517) Add `BillingCycleAnchor` to `Sub` and `BillingCycleAnchorUnchanged` to `SubParams` diff --git a/VERSION b/VERSION index 37354f1a7a..f1e4903d1d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -28.12.0 +29.0.0 diff --git a/stripe.go b/stripe.go index 39f226aa9b..11ddbca741 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.12.0" +const clientversion = "29.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