From d146769ae57ca67601404555838a7b4f12f10ef6 Mon Sep 17 00:00:00 2001 From: Helen Ye Date: Mon, 27 Jan 2025 15:20:07 -0500 Subject: [PATCH] Bump version to 13.4.0 --- CHANGELOG.md | 10 ++++++++++ VERSION | 2 +- lib/stripe/version.rb | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b9220d1..0da22c50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,14 @@ # Changelog +## 13.4.0 - 2025-01-27 +* [#1510](https://github.com/stripe/stripe-ruby/pull/1510) Update generated code + * Add support for `close` method on resource `Treasury.FinancialAccount` +* [#1521](https://github.com/stripe/stripe-ruby/pull/1521) pipe rubocop output to devnull +* [#1519](https://github.com/stripe/stripe-ruby/pull/1519) Fixed typos in CONTRIBUTING.MD +* [#1513](https://github.com/stripe/stripe-ruby/pull/1513) add justfile +* [#1515](https://github.com/stripe/stripe-ruby/pull/1515) Added CONTRIBUTING.md file +* Other: + * ⚠️ Bugfix: `invoice` and `line_item_id` can be passed to `update` method in `InvoiceLineItem`. + ## 13.3.1 - 2025-01-13 * [#1512](https://github.com/stripe/stripe-ruby/pull/1512) Import global configuration for options not available on StripeClient options * Fixes bug where `StripeClient` was not falling back to global options for options that are not available to be set per-client diff --git a/VERSION b/VERSION index c3d10c59..74302c51 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -13.3.1 +13.4.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index fb371210..493adf33 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "13.3.1" + VERSION = "13.4.0" end