Skip to content

Commit 9cbc463

Browse files
Bump version to 12.1.0
1 parent bab5393 commit 9cbc463

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
# Changelog
2+
## 12.1.0 - 2024-07-05
3+
* [#1425](https://github.com/stripe/stripe-ruby/pull/1425) Update generated code
4+
* Add support for `add_lines`, `remove_lines`, and `update_lines` methods on resource `Invoice`
5+
* [#1420](https://github.com/stripe/stripe-ruby/pull/1420) Update static methods for delete/list on BankAccount/Card to throw NotImplementedError
6+
* The below methods have been throwing `InvalidRequestError` because the urls used to make the requests have been buggy. Updating them to throw `NotImplementedError` instead just like their counterparts for update & retrieve because they cannot be implemented without the parent id.
7+
8+
Methods affected | Use these instead in the context of payment method | Use these in the context of external accounts
9+
------ | ------ | ----
10+
Stripe:: BankAccount.delete | Stripe::Customer.delete_source | Stripe::Account.delete_external_account
11+
Stripe:: BankAccount.list | Stripe::Customer.list_sources | Stripe::Customer.list_external_accounts
12+
Stripe:: Card.delete | Stripe::Customer.delete_source | Stripe::Account.delete_external_account
13+
Stripe:: Card.list | Stripe::Customer.list_sources | Stripe::Customer.list_external_accounts
14+
* [#1427](https://github.com/stripe/stripe-ruby/pull/1427) Regenerate rbis
15+
* [#1426](https://github.com/stripe/stripe-ruby/pull/1426) Remove coveralls and re-added JRuby
16+
217
## 12.0.0 - 2024-06-24
318
* [#1418](https://github.com/stripe/stripe-ruby/pull/1418) Add missing static method for verify on BankAccount
419
* [#1419](https://github.com/stripe/stripe-ruby/pull/1419)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12.0.0
1+
12.1.0

lib/stripe/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Stripe
4-
VERSION = "12.0.0"
4+
VERSION = "12.1.0"
55
end

0 commit comments

Comments
 (0)