Skip to content

Commit

Permalink
Bump version to 9.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mickjermsurawong-stripe committed May 7, 2019
1 parent 8d9fcc0 commit 0793eac
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 9.10.0 - 2019-05-06
* [#773](https://github.com/stripe/stripe-java/pull/773)
* Add support for `extraParams` in all sub-classes of ApiRequestParams their nested classes
* Add support for webhook event `payment_method.updated`
* Add support for `payment_intent` filter when listing `Charge`
* Add support for `legacy_payments` enum `RequestedCapability` in `AccountCreateParams` and `AccountUpdateParams`

## 9.9.0 - 2019-05-03
* [#768](https://github.com/stripe/stripe-java/pull/768)
* Add support for `customer` filter when listing `PaymentIntent`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.stripe</groupId>
<artifactId>stripe-java</artifactId>
<version>9.9.0</version>
<version>9.10.0</version>
</dependency>
```

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

```groovy
compile "com.stripe:stripe-java:9.9.0"
compile "com.stripe:stripe-java:9.10.0"
```

### Others
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.9.0
9.10.0
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.stripe
VERSION_NAME=9.9.0
VERSION_NAME=9.10.0

POM_URL=https://github.com/stripe/stripe-java
POM_SCM_URL[email protected]:stripe/stripe-java.git
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/stripe/Stripe.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public abstract class Stripe {
public static final String CONNECT_API_BASE = "https://connect.stripe.com";
public static final String LIVE_API_BASE = "https://api.stripe.com";
public static final String UPLOAD_API_BASE = "https://files.stripe.com";
public static final String VERSION = "9.9.0";
public static final String VERSION = "9.10.0";

public static volatile String apiKey;
public static volatile String clientId;
Expand Down

0 comments on commit 0793eac

Please sign in to comment.