From c7c700f9a469299d3577b57bb9a970d005cfee6c Mon Sep 17 00:00:00 2001 From: Brandur Date: Fri, 9 Feb 2018 11:28:28 -0800 Subject: [PATCH] Bump version to 28.12.0 --- CHANGELOG.md | 3 +++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88c5420224..137f2b04c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 28.12.0 - 2018-02-09 +* [#517](https://github.com/stripe/stripe-go/pull/517) Add `BillingCycleAnchor` to `Sub` and `BillingCycleAnchorUnchanged` to `SubParams` + ## 28.11.0 - 2018-01-29 * [#516](https://github.com/stripe/stripe-go/pull/516) Add `AmountZero` to `PlanParams` to it's possible to send zero values when creating or updating a plan diff --git a/VERSION b/VERSION index 15ca2b023e..37354f1a7a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -28.11.0 +28.12.0 diff --git a/stripe.go b/stripe.go index c212a23b36..39f226aa9b 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.11.0" +const clientversion = "28.12.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