stripe 5.33.0 → 5.34.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -2
- data/VERSION +1 -1
- data/lib/stripe/object_types.rb +1 -0
- data/lib/stripe/resources.rb +1 -0
- data/lib/stripe/resources/tax_code.rb +10 -0
- data/lib/stripe/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc39a48fe4d3cca6e57eb21851bf619e07addfbf5e4451d7c2669580c63ee18c
|
4
|
+
data.tar.gz: 74bd79d861284ffc4e53d34402db13c91742db91d66e522b56b6cd5b287ab4ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 973a5efa1c8988bd88dc6b58862e0b5559367162fe982d35d575583706d7ebf868d5330eba0e4e00e4139d70afd297b9826c4059e4f418fc503cebf086c7f0a2
|
7
|
+
data.tar.gz: f0b14e6f6b69642f26635adef651bfdfb07c3f2cc1b66e11dbeb86518ae79e7e60ec9561293f4b83fb15bb6c8d01da12222605766bb664bc06a710ac9cfe3d6f
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,11 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 5.34.0 - 2021-06-04
|
4
|
+
* [#981](https://github.com/stripe/stripe-ruby/pull/981) API Updates
|
5
|
+
* Add support for `TaxCode` API.
|
6
|
+
|
3
7
|
## 5.33.0 - 2021-05-19
|
4
|
-
* [#979](https://github.com/stripe/stripe-ruby/pull/979)
|
5
|
-
* [#975](https://github.com/stripe/stripe-ruby/pull/975) Add Truffleruby head to CI
|
8
|
+
* [#979](https://github.com/stripe/stripe-ruby/pull/979) Add support for the Identify VerificationSession and VerificationReport APIs
|
6
9
|
|
7
10
|
## 5.32.1 - 2021-04-05
|
8
11
|
* Correct use of regexp `match` in gemspec for old versions of Ruby
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
5.
|
1
|
+
5.34.0
|
data/lib/stripe/object_types.rb
CHANGED
@@ -84,6 +84,7 @@ module Stripe
|
|
84
84
|
Subscription::OBJECT_NAME => Subscription,
|
85
85
|
SubscriptionItem::OBJECT_NAME => SubscriptionItem,
|
86
86
|
SubscriptionSchedule::OBJECT_NAME => SubscriptionSchedule,
|
87
|
+
TaxCode::OBJECT_NAME => TaxCode,
|
87
88
|
TaxId::OBJECT_NAME => TaxId,
|
88
89
|
TaxRate::OBJECT_NAME => TaxRate,
|
89
90
|
Terminal::ConnectionToken::OBJECT_NAME => Terminal::ConnectionToken,
|
data/lib/stripe/resources.rb
CHANGED
@@ -73,6 +73,7 @@ require "stripe/resources/source_transaction"
|
|
73
73
|
require "stripe/resources/subscription"
|
74
74
|
require "stripe/resources/subscription_item"
|
75
75
|
require "stripe/resources/subscription_schedule"
|
76
|
+
require "stripe/resources/tax_code"
|
76
77
|
require "stripe/resources/tax_id"
|
77
78
|
require "stripe/resources/tax_rate"
|
78
79
|
require "stripe/resources/terminal/connection_token"
|
data/lib/stripe/version.rb
CHANGED
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: 5.
|
4
|
+
version: 5.34.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stripe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-06-04 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.
|
@@ -119,6 +119,7 @@ files:
|
|
119
119
|
- lib/stripe/resources/subscription.rb
|
120
120
|
- lib/stripe/resources/subscription_item.rb
|
121
121
|
- lib/stripe/resources/subscription_schedule.rb
|
122
|
+
- lib/stripe/resources/tax_code.rb
|
122
123
|
- lib/stripe/resources/tax_id.rb
|
123
124
|
- lib/stripe/resources/tax_rate.rb
|
124
125
|
- lib/stripe/resources/terminal/connection_token.rb
|