From ec5152c82ebfbf336cc0570ea1328cc9929accdb Mon Sep 17 00:00:00 2001 From: Ramya Rao Date: Tue, 9 Apr 2024 14:12:17 -0700 Subject: [PATCH] Bump version to 10.15.0 --- CHANGELOG.md | 9 +++++++++ VERSION | 2 +- lib/stripe/version.rb | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7746b5b2..4d5248f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,13 @@ # Changelog +## 10.15.0 - 2024-04-09 +* [#1377](https://github.com/stripe/stripe-ruby/pull/1377) Add last_response to StripeObject + * Users can now retrieve raw response from the returned resource, using the `last_response` property. See [README](https://github.com/stripe/stripe-ruby/blob/master/README.md) for an example. +* [#1372](https://github.com/stripe/stripe-ruby/pull/1372) Update generated code + * Add support for new resources `Entitlements.ActiveEntitlement` and `Entitlements.Feature` + * Add support for `list` and `retrieve` methods on resource `ActiveEntitlement` + * Add support for `create`, `list`, `retrieve`, and `update` methods on resource `Feature` +* [#1366](https://github.com/stripe/stripe-ruby/pull/1366) Move executables to `exe` folder + ## 10.14.0 - 2024-03-28 * [#1369](https://github.com/stripe/stripe-ruby/pull/1369) Update generated code * Add support for new resources `Billing.MeterEventAdjustment`, `Billing.MeterEvent`, and `Billing.Meter` diff --git a/VERSION b/VERSION index 0ca1348d..f9fb144f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -10.14.0 +10.15.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index 282a7ca0..d9d3f13d 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "10.14.0" + VERSION = "10.15.0" end