From 4c3593e62e18ca5d11acbe396c4fa4a84a902118 Mon Sep 17 00:00:00 2001 From: Jesse Rosalia Date: Wed, 23 Oct 2024 11:03:31 -0700 Subject: [PATCH] Bump version to 13.0.2 --- CHANGELOG.md | 5 +++++ VERSION | 2 +- lib/stripe/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b214ebfc..2a4a432c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # Changelog +## 13.0.2 - 2024-10-23 +* [#1473](https://github.com/stripe/stripe-ruby/pull/1473) Always return the result of APIResource#refresh in APIResource.retrieve + + * Fix bug where we would not return the mutated `self` object when calling `APIResource.retrieve` + ## 13.0.1 - 2024-10-18 * [#1471](https://github.com/stripe/stripe-ruby/pull/1471) update object tags for meter-related classes diff --git a/VERSION b/VERSION index 5cb7d856..347caf39 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -13.0.1 +13.0.2 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index 9ea65f2f..74452a07 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "13.0.1" + VERSION = "13.0.2" end