stripe 5.32.0 → 5.32.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e600b7741930b12c7ffaa1b6cfdcf6a540d5d57f8955a2c0be38a37d6f5ff556
4
- data.tar.gz: dfd0a97aff35a0e38a4818a1c239da46b3d47d741cf1fb3c7608d7d5c7c182b9
3
+ metadata.gz: ef4a098227e25d135d50164206f72a58df080fa4517de14338fca904a9a2dc21
4
+ data.tar.gz: 9bb90124b3e8b41f62e16a40df60a8faa5ffb84342feb67c3756f22acd136bec
5
5
  SHA512:
6
- metadata.gz: 7fe07169d17aa534beffca79063fdc9c48ebebc48176aed097220a183c0d305d696b97bba255f6c3633755e92c96bbbacb5cb1865c66c99754ca28c4f23e7c84
7
- data.tar.gz: 9b06b7398144207f98d74bb270777fdf5b8a54f454c776891d95401cae9a86edd487aeebfe44d1b38744ff17e3f8d952b34415308241597f3351720936791504
6
+ metadata.gz: 5ac4f2f09e7994562b20dfb2f519017a770d002fc6ba912f531b402fc5cbec700b484720125323f975a095071359f3aaf142341614beea8b605774edffde24a3
7
+ data.tar.gz: 2277846245baf1b5142e7f8e3f14ef03ed83a2fa5d9f82e359ce5d8706aa860e1bfe90518b5dac4bbb5ec21a0acd783280bc90df9c2a7d4b0ea01909472afac3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.32.1 - 2021-04-05
4
+ * Correct use of regexp `match` in gemspec for old versions of Ruby
5
+
3
6
  ## 5.32.0 - 2021-04-05
4
7
  * [#973](https://github.com/stripe/stripe-ruby/pull/973) Reduce packed gem size
5
8
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 5.32.0
1
+ 5.32.1
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stripe
4
- VERSION = "5.32.0"
4
+ VERSION = "5.32.1"
5
5
  end
data/stripe.gemspec CHANGED
@@ -27,14 +27,14 @@ Gem::Specification.new do |s|
27
27
  }
28
28
 
29
29
  ignored = Regexp.union(
30
- %r{\A\.editorconfig},
31
- %r{\A\.git},
32
- %r{\A\.rubocop},
33
- %r{\A\.travis.yml},
34
- %r{\A\.vscode},
35
- %r{\Atest/}
30
+ /\A\.editorconfig/,
31
+ /\A\.git/,
32
+ /\A\.rubocop/,
33
+ /\A\.travis.yml/,
34
+ /\A\.vscode/,
35
+ /\Atest/
36
36
  )
37
- s.files = `git ls-files`.split("\n").reject { |f| ignored.match?(f) }
37
+ s.files = `git ls-files`.split("\n").reject { |f| ignored.match(f) }
38
38
  s.executables = `git ls-files -- bin/*`.split("\n")
39
39
  .map { |f| ::File.basename(f) }
40
40
  s.require_paths = ["lib"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stripe
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.32.0
4
+ version: 5.32.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stripe