File tree 5 files changed +12
-5
lines changed
5 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 20.26.0 - 2020-11-09
4
+ * [ #1149 ] ( https://github.com/stripe/stripe-java/pull/1149 ) Add ` invoice.finalization_error ` as a ` type ` on ` Event `
5
+ * [ #1148 ] ( https://github.com/stripe/stripe-java/pull/1148 ) Multiple API changes
6
+ * Add support for ` last_finalization_error ` on ` Invoice `
7
+ * Add support for deserializing Issuing ` Dispute ` as a ` source ` on ` BalanceTransaction `
8
+ * Add support for ` payment_method_type ` on ` StripeError ` used by other API resources
9
+
3
10
## 20.25.0 - 2020-11-04
4
11
* [ #1147 ] ( https://github.com/stripe/stripe-java/pull/1147 ) Add support for ` company[registration_number] ` on ` Account `
5
12
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ The official [Stripe][stripe] Java client library.
17
17
Add this dependency to your project's build file:
18
18
19
19
``` groovy
20
- implementation "com.stripe:stripe-java:20.25 .0"
20
+ implementation "com.stripe:stripe-java:20.26 .0"
21
21
```
22
22
23
23
### Maven users
@@ -28,7 +28,7 @@ Add this dependency to your project's POM:
28
28
<dependency >
29
29
<groupId >com.stripe</groupId >
30
30
<artifactId >stripe-java</artifactId >
31
- <version >20.25 .0</version >
31
+ <version >20.26 .0</version >
32
32
</dependency >
33
33
```
34
34
Original file line number Diff line number Diff line change 1
- 20.25 .0
1
+ 20.26 .0
Original file line number Diff line number Diff line change 1
1
GROUP =com.stripe
2
- VERSION_NAME =20.25 .0
2
+ VERSION_NAME =20.26 .0
3
3
4
4
POM_URL =https://github.com/stripe/stripe-java
5
5
POM_SCM_URL =
[email protected] :stripe/stripe-java.git
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public abstract class Stripe {
13
13
public static final String CONNECT_API_BASE = "https://connect.stripe.com" ;
14
14
public static final String LIVE_API_BASE = "https://api.stripe.com" ;
15
15
public static final String UPLOAD_API_BASE = "https://files.stripe.com" ;
16
- public static final String VERSION = "20.25 .0" ;
16
+ public static final String VERSION = "20.26 .0" ;
17
17
18
18
public static volatile String apiKey ;
19
19
public static volatile String clientId ;
You can’t perform that action at this time.
0 commit comments