Skip to content

Commit 58d5247

Browse files
Bump version to 29.4.0-beta.2
1 parent 41c2641 commit 58d5247

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 29.4.0-beta.2 - 2025-07-09
4+
* [#2026](https://github.com/stripe/stripe-java/pull/2026) Pull in V2 FinancialAccount changes for June release
5+
* Add support for `close` and `create` methods on resource `v2.moneymanagement.FinancialAccount`
6+
* Add support for `storer` on `v2.core.Account.configuration`, `v2.core.AccountCreateParams.configuration`, and `v2.core.AccountUpdateParams.configuration`
7+
* Add support for `statusDetails` on `v2.moneymanagement.FinancialAccount`
8+
* Add support for `status` on `v2.moneymanagement.FinancialAccountListParams`
9+
* Add support for new value `configuration.storer` on enums `v2.core.AccountCreateParams.include`, `v2.core.AccountRetrieveParams.include`, and `v2.core.AccountUpdateParams.include`
10+
* Add support for new value `storer` on enum `v2.core.AccountCloseParams.appliedConfigurations`
11+
* Add support for thin events `V2CoreAccountIncludingConfigurationStorerCapabilityStatusUpdatedEvent` and `V2CoreAccountIncludingConfigurationStorerUpdatedEvent` with related object `v2.core.Account`
12+
* Add support for error types `AlreadyExistsException` and `NonZeroBalanceException`
13+
314
## 29.4.0-beta.1 - 2025-07-01
415
* [#2009](https://github.com/stripe/stripe-java/pull/2009) Update generated code for beta
516
* Change type of `InvoiceCreatePreviewParams.schedule_details.billingMode`, `InvoiceCreatePreviewParams.subscription_details.billingMode`, `Quote.subscription_data.billingMode`, `QuoteCreateParams.subscription_data.billingMode`, `SubscriptionCreateParams.billingMode`, `SubscriptionScheduleCreateParams.billingMode`, and `checkout.SessionCreateParams.subscription_data.billingMode` from `enum('classic'|'flexible')` to `billing_mode`

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Stripe Java client library
22

3-
[![Maven Central](https://img.shields.io/badge/maven--central-v29.4.0-beta.1-blue)](https://mvnrepository.com/artifact/com.stripe/stripe-java)
3+
[![Maven Central](https://img.shields.io/badge/maven--central-v29.4.0-beta.2-blue)](https://mvnrepository.com/artifact/com.stripe/stripe-java)
44
[![JavaDoc](http://img.shields.io/badge/javadoc-reference-blue.svg)](https://stripe.dev/stripe-java)
55
[![Build Status](https://github.com/stripe/stripe-java/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/stripe/stripe-java/actions?query=branch%3Amaster)
66

@@ -17,7 +17,7 @@ The official [Stripe][stripe] Java client library.
1717
Add this dependency to your project's build file:
1818

1919
```groovy
20-
implementation "com.stripe:stripe-java:29.4.0-beta.1"
20+
implementation "com.stripe:stripe-java:29.4.0-beta.2"
2121
```
2222

2323
### Maven users
@@ -28,15 +28,15 @@ Add this dependency to your project's POM:
2828
<dependency>
2929
<groupId>com.stripe</groupId>
3030
<artifactId>stripe-java</artifactId>
31-
<version>29.4.0-beta.1</version>
31+
<version>29.4.0-beta.2</version>
3232
</dependency>
3333
```
3434

3535
### Others
3636

3737
If you are not using Gradle or Maven, you will need to manually install the following JARs:
3838

39-
- [The Stripe JAR](https://search.maven.org/remotecontent?filepath=com/stripe/stripe-java/29.4.0-beta.1/stripe-java-29.4.0-beta.1.jar)
39+
- [The Stripe JAR](https://search.maven.org/remotecontent?filepath=com/stripe/stripe-java/29.4.0-beta.2/stripe-java-29.4.0-beta.2.jar)
4040
- [Google Gson][gson] from <https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar>.
4141

4242
### [ProGuard][proguard]

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
29.4.0-beta.1
1+
29.4.0-beta.2

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.stripe
2-
VERSION_NAME=29.4.0-beta.1
2+
VERSION_NAME=29.4.0-beta.2
33

44
POM_URL=https://github.com/stripe/stripe-java
55
POM_SCM_URL=[email protected]:stripe/stripe-java.git

src/main/java/com/stripe/Stripe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public abstract class Stripe {
1515
public static final String LIVE_API_BASE = "https://api.stripe.com";
1616
public static final String UPLOAD_API_BASE = "https://files.stripe.com";
1717
public static final String METER_EVENTS_API_BASE = "https://meter-events.stripe.com";
18-
public static final String VERSION = "29.4.0-beta.1";
18+
public static final String VERSION = "29.4.0-beta.2";
1919

2020
public static volatile String apiKey;
2121
public static volatile String clientId;

0 commit comments

Comments
 (0)