diff --git a/CHANGELOG.md b/CHANGELOG.md index 01e1bf6a..bae165d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 8.2.0 - 2023-02-02 +* [#1173](https://github.com/stripe/stripe-ruby/pull/1173) API Updates + * Add support for `resume` method on resource `Subscription` +* [#1171](https://github.com/stripe/stripe-ruby/pull/1171) Remove unused `partial` param from `initialize_from` + ## 8.1.0 - 2023-01-12 * [#1162](https://github.com/stripe/stripe-ruby/pull/1162) Improve request events instrumentation diff --git a/VERSION b/VERSION index 8104cabd..fbb9ea12 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.1.0 +8.2.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index 0c2d479c..c848b545 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "8.1.0" + VERSION = "8.2.0" end