diff --git a/CHANGELOG.md b/CHANGELOG.md index 49604ab2f0..c8a7407680 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 80.2.0 - 2024-10-09 +* [#1929](https://github.com/stripe/stripe-go/pull/1929), [#1933](https://github.com/stripe/stripe-go/pull/1933) Remove rawrequests Post, Get, and Delete in favor of rawrequests.Client + * The individual `rawrequests` functions for Post, Get, and Delete methods are removed in favor of the client model which allows local configuration of backend and api key, which enables more flexible calls to new/preview/unsupported APIs. + ## 80.1.0 - 2024-10-03 * [#1928](https://github.com/stripe/stripe-go/pull/1928) Update generated code * Remove the support for resource `Margin` that was accidentally made public in the last release diff --git a/VERSION b/VERSION index e72c63fb16..ec7b97242e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -80.1.0 +80.2.0 diff --git a/stripe.go b/stripe.go index 12c0fe4c2d..95b3b8a1ab 100644 --- a/stripe.go +++ b/stripe.go @@ -1386,7 +1386,7 @@ func StringSlice(v []string) []*string { // // clientversion is the binding version -const clientversion = "80.1.0" +const clientversion = "80.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