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
+ ## 9.12.0 - 2019-05-14
4
+ * [ #777 ] ( https://github.com/stripe/stripe-java/pull/777 )
5
+ * Add support for ` Capability `
6
+ * Add enum ` off_session ` for ` PaymentIntentConfirmParams ` and ` PaymentIntentCreateParams `
7
+ * Add enum ` abandoned ` for ` PaymentIntentCancellationParams ` .
8
+ * Add support for ` statementDescriptorKana ` and ` statementDescriptorKanji ` in ` Account.SettingsPayments `
9
+
3
10
## 9.11.0 - 2019-05-10
4
11
* [ #776 ] ( https://github.com/stripe/stripe-java/pull/776 )
5
12
* Add support for ` startDate ` in ` Subscription `
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Add this dependency to your project's POM:
16
16
<dependency >
17
17
<groupId >com.stripe</groupId >
18
18
<artifactId >stripe-java</artifactId >
19
- <version >9.11 .0</version >
19
+ <version >9.12 .0</version >
20
20
</dependency >
21
21
```
22
22
@@ -25,7 +25,7 @@ Add this dependency to your project's POM:
25
25
Add this dependency to your project's build file:
26
26
27
27
``` groovy
28
- compile "com.stripe:stripe-java:9.11 .0"
28
+ compile "com.stripe:stripe-java:9.12 .0"
29
29
```
30
30
31
31
### Others
Original file line number Diff line number Diff line change 1
- 9.11 .0
1
+ 9.12 .0
Original file line number Diff line number Diff line change 1
1
GROUP =com.stripe
2
- VERSION_NAME =9.11 .0
2
+ VERSION_NAME =9.12 .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 @@ -14,7 +14,7 @@ public abstract class Stripe {
14
14
public static final String CONNECT_API_BASE = "https://connect.stripe.com" ;
15
15
public static final String LIVE_API_BASE = "https://api.stripe.com" ;
16
16
public static final String UPLOAD_API_BASE = "https://files.stripe.com" ;
17
- public static final String VERSION = "9.11 .0" ;
17
+ public static final String VERSION = "9.12 .0" ;
18
18
19
19
public static volatile String apiKey ;
20
20
public static volatile String clientId ;
You can’t perform that action at this time.
0 commit comments