Skip to content

Commit

Permalink
Bump version to 17.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-stripe committed Feb 11, 2020
1 parent b4763ad commit e91e6c5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 17.9.0 - 2020-02-10
* [#963](https://github.com/stripe/stripe-java/pull/963) Multiple API changes
* Add support for new `type` values for `TaxId`.
* Add support for `payment_intent_data[statement_descriptor_suffix]` on Checkout `Session`.

## 17.8.0 - 2020-02-04
* [#961](https://github.com/stripe/stripe-java/pull/961) Rename `sort_code` to `sender_sort_code` on `SourceTransaction` for BACS debit. (This is technically a breaking change.)

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>17.8.0</version>
<version>17.9.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
implementation "com.stripe:stripe-java:17.8.0"
implementation "com.stripe:stripe-java:17.9.0"
```

### Others
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
17.8.0
17.9.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=17.8.0
VERSION_NAME=17.9.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 @@ -13,7 +13,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 = "17.8.0";
public static final String VERSION = "17.9.0";

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

0 comments on commit e91e6c5

Please sign in to comment.