diff --git a/CHANGELOG.md b/CHANGELOG.md index 32eba15d..9ad713a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ # Changelog +## 10.8.0 - 2024-02-08 +* [#1322](https://github.com/stripe/stripe-ruby/pull/1322) Update generated code +* [#1323](https://github.com/stripe/stripe-ruby/pull/1323) Extract other CRUDL api operations from mixins + * Extract more CRUDL operations, namely `create`, `delete`, `update`, and `list` into the resources. These methods will no longer rely on the APIOperation mixins. +* [#1314](https://github.com/stripe/stripe-ruby/pull/1314) Update mocha gem to 1.16 + ## 10.7.1 - 2024-02-05 * [#1320](https://github.com/stripe/stripe-ruby/pull/1320) Remove spurious _search deprecation messages (https://github.com/stripe/stripe-ruby/issues/1319) diff --git a/VERSION b/VERSION index 17dfec88..2a3262d8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -10.7.1 +10.8.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index 08ed8b92..a8f9449f 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "10.7.1" + VERSION = "10.8.0" end