From 430a5b116dd0ac20f1ae477d1b280f7d50718cac Mon Sep 17 00:00:00 2001 From: Dominic Charley-Roy Date: Fri, 26 Aug 2022 11:15:28 -0400 Subject: [PATCH] Bump version to 21.4.0-beta.1 --- CHANGELOG.md | 5 +++++ README.md | 6 +++--- VERSION | 2 +- gradle.properties | 2 +- src/main/java/com/stripe/Stripe.java | 2 +- 5 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4db9ee932d..57a9d18ad6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 21.4.0-beta.1 - 2022-08-26 +* [#1429](https://github.com/stripe/stripe-java/pull/1429) API Updates for beta branch + * Updated stable APIs to the latest version + * Add support for the beta [Gift Card API](https://stripe.com/docs/gift-cards). + ## 21.3.0 - 2022-08-23 * [#1422](https://github.com/stripe/stripe-java/pull/1422) API Updates * Add support for new resource `CustomerCashBalanceTransaction` diff --git a/README.md b/README.md index ff9bd5f0984..44992a94361 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The official [Stripe][stripe] Java client library. Add this dependency to your project's build file: ```groovy -implementation "com.stripe:stripe-java:21.3.0-beta.2" +implementation "com.stripe:stripe-java:21.4.0-beta.1" ``` ### Maven users @@ -29,7 +29,7 @@ Add this dependency to your project's POM: com.stripe stripe-java - 21.3.0-beta.2 + 21.4.0-beta.1 ``` @@ -37,7 +37,7 @@ Add this dependency to your project's POM: You'll need to manually install the following JARs: -- [The Stripe JAR](https://search.maven.org/remotecontent?filepath=com/stripe/stripe-java/21.3.0-beta.2/stripe-java-21.3.0-beta.2.jar) +- [The Stripe JAR](https://search.maven.org/remotecontent?filepath=com/stripe/stripe-java/21.4.0-beta.1/stripe-java-21.4.0-beta.1.jar) - [Google Gson][gson] from . ### [ProGuard][proguard] diff --git a/VERSION b/VERSION index 467f2fdbc18..be3ef6c254a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -21.3.0-beta.2 +21.4.0-beta.1 diff --git a/gradle.properties b/gradle.properties index 009cc58def8..5c6587ed5f0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.stripe -VERSION_NAME=21.3.0-beta.2 +VERSION_NAME=21.4.0-beta.1 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 4b2739409bc..c7ae25d2b40 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 = "21.3.0-beta.2"; + public static final String VERSION = "21.4.0-beta.1"; public static volatile String apiKey; public static volatile String clientId;