Skip to content

Commit

Permalink
Bump version to 21.4.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dcr-stripe committed Aug 26, 2022
1 parent 14de2a1 commit 430a5b1
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions 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`
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -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
Expand All @@ -29,15 +29,15 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.stripe</groupId>
<artifactId>stripe-java</artifactId>
<version>21.3.0-beta.2</version>
<version>21.4.0-beta.1</version>
</dependency>
```

### Others

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 <https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar>.

### [ProGuard][proguard]
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
21.3.0-beta.2
21.4.0-beta.1
2 changes: 1 addition & 1 deletion 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
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/stripe/Stripe.java
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 = "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;
Expand Down

0 comments on commit 430a5b1

Please sign in to comment.