Skip to content

Commit 3ca01c4

Browse files
committed
Bump version to 9.9.0
1 parent 8081888 commit 3ca01c4

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

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

3+
## 9.9.0 - 2019-05-03
4+
* [#768](https://github.com/stripe/stripe-java/pull/768)
5+
* Add support for `customer` filter when listing `PaymentIntent`
6+
* Add support for `replacement_for` and `replacement_reason` on Issuing `card` creation
7+
38
## 9.8.0 - 2019-04-29
49
* [#766](https://github.com/stripe/stripe-java/pull/766) Add support for ACSS debit Sources
510

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.8.0</version>
19+
<version>9.9.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.8.0"
28+
compile "com.stripe:stripe-java:9.9.0"
2929
```
3030

3131
### Others

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.8.0
1+
9.9.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.8.0
2+
VERSION_NAME=9.9.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.8.0";
17+
public static final String VERSION = "9.9.0";
1818

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

0 commit comments

Comments
 (0)