Skip to content

Commit 11f715c

Browse files
Bump version to 20.90.0
1 parent cbf2d9b commit 11f715c

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

CHANGELOG.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Changelog
22

3+
## 20.90.0 - 2021-11-19
4+
* [#1289](https://github.com/stripe/stripe-java/pull/1289) API Updates
5+
* Add support for `wallets` on `Issuing.Card`
6+
* [#1288](https://github.com/stripe/stripe-java/pull/1288) API Updates
7+
* Add support for `interac_present` on `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentIntentConfirmParams.payment_method_options`, and `PaymentIntent.payment_method_options`
8+
* Add support for new value `jct` on enums `TaxRateCreateParams.tax_type` and `TaxRateUpdateParams.tax_type`
9+
310
## 20.89.0 - 2021-11-17
411
* [#1286](https://github.com/stripe/stripe-java/pull/1286) API Updates
5-
* Add support for `automatic_payment_methods` on `PaymentIntentCreateParams` and `PaymentIntent`
6-
12+
* Add support for `automatic_payment_methods` on `PaymentIntentCreateParams` and `PaymentIntent`
713

814
## 20.88.0 - 2021-11-16
915
* [#1284](https://github.com/stripe/stripe-java/pull/1284) API Updates

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The official [Stripe][stripe] Java client library.
1717
Add this dependency to your project's build file:
1818

1919
```groovy
20-
implementation "com.stripe:stripe-java:20.89.0"
20+
implementation "com.stripe:stripe-java:20.90.0"
2121
```
2222

2323
### Maven users
@@ -28,7 +28,7 @@ Add this dependency to your project's POM:
2828
<dependency>
2929
<groupId>com.stripe</groupId>
3030
<artifactId>stripe-java</artifactId>
31-
<version>20.89.0</version>
31+
<version>20.90.0</version>
3232
</dependency>
3333
```
3434

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.89.0
1+
20.90.0

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.stripe
2-
VERSION_NAME=20.89.0
2+
VERSION_NAME=20.90.0
33

44
POM_URL=https://github.com/stripe/stripe-java
55
POM_SCM_URL=[email protected]:stripe/stripe-java.git

src/main/java/com/stripe/Stripe.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public abstract class Stripe {
1313
public static final String CONNECT_API_BASE = "https://connect.stripe.com";
1414
public static final String LIVE_API_BASE = "https://api.stripe.com";
1515
public static final String UPLOAD_API_BASE = "https://files.stripe.com";
16-
public static final String VERSION = "20.89.0";
16+
public static final String VERSION = "20.90.0";
1717

1818
public static volatile String apiKey;
1919
public static volatile String clientId;

0 commit comments

Comments
 (0)