Compare commits

..

No commits in common. "2e533be04d32fd0044289aa78a4bd53246f92c64" and "f97b214181eecbeaba99117c3b74e1b07386c1b5" have entirely different histories.

6 changed files with 7 additions and 18 deletions

View File

@ -1,16 +1,5 @@
# Changelog
## 9.4.0-beta.1 - 2023-09-14
* Updated stable APIs to the latest version
## 9.3.0 - 2023-09-14
* [#1272](https://github.com/stripe/stripe-ruby/pull/1272) Update generated code
* Add support for new resource `PaymentMethodConfiguration`
* Add support for `create`, `list`, `retrieve`, and `update` methods on resource `PaymentMethodConfiguration`
* [#1271](https://github.com/stripe/stripe-ruby/pull/1271) Update generated code
* Add support for `capture`, `create`, `expire`, `increment`, and `reverse` test helper methods on resource `Issuing.Authorization`
* Add support for `create_force_capture`, `create_unlinked_refund`, and `refund` test helper methods on resource `Issuing.Transaction`
## 9.3.0-beta.1 - 2023-09-07
* [#1269](https://github.com/stripe/stripe-ruby/pull/1269) Update generated code for beta
* Release specs are identical.

View File

@ -1 +1 @@
v533
v532

View File

@ -1 +1 @@
9.4.0-beta.1
9.3.0-beta.1

View File

@ -4,6 +4,6 @@
module Stripe
module ApiVersion
CURRENT = "2023-08-16"
PREVIEW = "2023-09-15.preview-v2"
PREVIEW = "2023-08-11.preview-v2"
end
end

View File

@ -2,10 +2,10 @@
# frozen_string_literal: true
module Stripe
# You can add one or multiple tax IDs to a [customer](https://stripe.com/docs/api/customers) or account.
# Customer and account tax IDs get displayed on related invoices and credit notes.
# You can add one or multiple tax IDs to a [customer](https://stripe.com/docs/api/customers).
# A customer's tax IDs are displayed on invoices and credit notes issued for the customer.
#
# Related guides: [Customer tax identification numbers](https://stripe.com/docs/billing/taxes/tax-ids), [Account tax IDs](https://stripe.com/docs/invoicing/connect#account-tax-ids)
# Related guide: [Customer tax identification numbers](https://stripe.com/docs/billing/taxes/tax-ids)
class TaxId < APIResource
include Stripe::APIOperations::Delete
extend Stripe::APIOperations::List

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Stripe
VERSION = "9.4.0-beta.1"
VERSION = "9.3.0-beta.1"
end