From 47d9f44cfc046e308c3ec69773c52775024a64aa Mon Sep 17 00:00:00 2001 From: Brandur Date: Mon, 26 Feb 2018 15:41:05 -0800 Subject: [PATCH] Bump version to 29.2.0 --- CHANGELOG.md | 4 ++++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba4ab952c3..c932c6e15c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 29.2.0 - 2018-02-26 +* [#525](https://github.com/stripe/stripe-go/pull/525) Support shipping carrier and tracking number in orders +* [#526](https://github.com/stripe/stripe-go/pull/526) Fix ignored `commonParams` when returning an order + ## 29.1.1 - 2018-02-21 * [#522](https://github.com/stripe/stripe-go/pull/522) Bump API version and fix creating plans with a product diff --git a/VERSION b/VERSION index 910a56e085..a5f5084b9c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -29.1.1 +29.2.0 diff --git a/stripe.go b/stripe.go index cde3535cfc..aed0bd20b0 100644 --- a/stripe.go +++ b/stripe.go @@ -29,7 +29,7 @@ const ( const apiversion = "2018-02-06" // clientversion is the binding version -const clientversion = "29.1.1" +const clientversion = "29.2.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