Skip to content

Commit 33ff049

Browse files
Bump version to 9.12.0
1 parent d872635 commit 33ff049

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

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+
310
## 9.11.0 - 2019-05-10
411
* [#776](https://github.com/stripe/stripe-java/pull/776)
512
* Add support for `startDate` in `Subscription`

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add this dependency to your project's POM:
1616
<dependency>
1717
<groupId>com.stripe</groupId>
1818
<artifactId>stripe-java</artifactId>
19-
<version>9.11.0</version>
19+
<version>9.12.0</version>
2020
</dependency>
2121
```
2222

@@ -25,7 +25,7 @@ Add this dependency to your project's POM:
2525
Add this dependency to your project's build file:
2626

2727
```groovy
28-
compile "com.stripe:stripe-java:9.11.0"
28+
compile "com.stripe:stripe-java:9.12.0"
2929
```
3030

3131
### Others

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.11.0
1+
9.12.0

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.stripe
2-
VERSION_NAME=9.11.0
2+
VERSION_NAME=9.12.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
@@ -14,7 +14,7 @@ public abstract class Stripe {
1414
public static final String CONNECT_API_BASE = "https://connect.stripe.com";
1515
public static final String LIVE_API_BASE = "https://api.stripe.com";
1616
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";
1818

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

0 commit comments

Comments
 (0)