diff --git a/CHANGELOG.md b/CHANGELOG.md index a208c6cbf79..18f1037676c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.) diff --git a/README.md b/README.md index 05a5d86caf5..bcd37a9925e 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Add this dependency to your project's POM: com.stripe stripe-java - 17.8.0 + 17.9.0 ``` @@ -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 diff --git a/VERSION b/VERSION index 6fb9581dcab..297e3ef0662 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -17.8.0 +17.9.0 diff --git a/gradle.properties b/gradle.properties index 7f429c3f2fd..c4dbfc0ee6b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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=git@github.com:stripe/stripe-java.git diff --git a/src/main/java/com/stripe/Stripe.java b/src/main/java/com/stripe/Stripe.java index d8fd36ad009..0c81f30c3a6 100644 --- a/src/main/java/com/stripe/Stripe.java +++ b/src/main/java/com/stripe/Stripe.java @@ -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;