stripe 13.0.1 → 13.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8703e26f6493e135c48ab421eb1c197c297e287d1fb89870e949a6267baabc6a
4
- data.tar.gz: 7a423d816ee6b63331e5c54c2c4ea7f236ae1e1af5b7dedbb151530360ae4830
3
+ metadata.gz: 5bb4e5e3353b792a5253af7a6d02d741f0a889b69e96a862b9dd0e7e4b70e5a4
4
+ data.tar.gz: a64378a08b23ba357d17d807636bc35e95fe3cf4b72c268960859b6a51b066c5
5
5
  SHA512:
6
- metadata.gz: b6d1aa02657c0e6b5a866797f696271e8e26aadf66a05a92fef3e1e814498d3ea540718377d54409f535071af206061acaaa2457052b26a1cee44c4b822ad226
7
- data.tar.gz: 632f4d3fa56137d1878351cd9892794110723e5289df308fbc0b3e662e0f53279e75836f7237e209c50860424cd3a3e7fcdb633f6375fa4f13cd4b682235af2f
6
+ metadata.gz: 3ab94f415b05c7671704c9f2aeb11b0f6f3515eedca50564c1568c1cce37825f3459f6369ca95157f0f0d6252119888b26b1efdea03542250faacffba6c17084
7
+ data.tar.gz: 6e5f594ae791ed24c0e7b998dd0cf5726d8477c14c3d2cb3395a6fe694e2c0da2d4c27e4bd2523d3f8d464a8016fc5dcff95c1b4d8e396ae9194ae7ebbd51a34
data/CHANGELOG.md CHANGED
@@ -1,4 +1,9 @@
1
1
  # Changelog
2
+ ## 13.0.2 - 2024-10-23
3
+ * [#1473](https://github.com/stripe/stripe-ruby/pull/1473) Always return the result of APIResource#refresh in APIResource.retrieve
4
+
5
+ * Fix bug where we would not return the mutated `self` object when calling `APIResource.retrieve`
6
+
2
7
  ## 13.0.1 - 2024-10-18
3
8
  * [#1471](https://github.com/stripe/stripe-ruby/pull/1471) update object tags for meter-related classes
4
9
 
data/README.md CHANGED
@@ -367,7 +367,7 @@ background terminal ([stripe-mock's README][stripe-mock] also contains
367
367
  instructions for installing via Homebrew and other methods):
368
368
 
369
369
  ```sh
370
- go get -u github.com/stripe/stripe-mock
370
+ go install github.com/stripe/stripe-mock@latest
371
371
  stripe-mock
372
372
  ```
373
373
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 13.0.1
1
+ 13.0.2
@@ -110,7 +110,6 @@ module Stripe
110
110
  opts = Util.normalize_opts(opts)
111
111
  instance = new(id, opts)
112
112
  instance.refresh
113
- instance
114
113
  end
115
114
 
116
115
  def request_stripe_object(method:, path:, params:, base_address: :api, opts: {})
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stripe
4
- VERSION = "13.0.1"
4
+ VERSION = "13.0.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stripe
3
3
  version: !ruby/object:Gem::Version
4
- version: 13.0.1
4
+ version: 13.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stripe
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2024-10-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Stripe is the easiest way to accept payments online. See https://stripe.com
14
14
  for details.