Skip to content

Commit 5ff5113

Browse files
committed
Bump version to 28.3.1
1 parent 7c99196 commit 5ff5113

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 28.3.1 - 2025-02-07
4+
* [#1946](https://github.com/stripe/stripe-java/pull/1946) Ensure `getRawJsonObject` returns data for constructed webhooks
5+
36
## 28.3.0 - 2025-01-27
47
* [#1936](https://github.com/stripe/stripe-java/pull/1936) Update generated code
58
* Add support for `close` method on resource `Treasury.FinancialAccount`

README.md

+4-4
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-v28.3.0-blue)](https://mvnrepository.com/artifact/com.stripe/stripe-java)
3+
[![Maven Central](https://img.shields.io/badge/maven--central-v28.3.1-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:28.3.0"
20+
implementation "com.stripe:stripe-java:28.3.1"
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>28.3.0</version>
31+
<version>28.3.1</version>
3232
</dependency>
3333
```
3434

3535
### Others
3636

3737
You'll need to manually install the following JARs:
3838

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

4242
### [ProGuard][proguard]

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
28.3.0
1+
28.3.1

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.stripe
2-
VERSION_NAME=28.3.0
2+
VERSION_NAME=28.3.1
33

44
POM_URL=https://github.com/stripe/stripe-java
55
POM_SCM_URL=git@github.com:stripe/stripe-java.git

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public abstract class Stripe {
1414
public static final String LIVE_API_BASE = "https://api.stripe.com";
1515
public static final String UPLOAD_API_BASE = "https://files.stripe.com";
1616
public static final String METER_EVENTS_API_BASE = "https://meter-events.stripe.com";
17-
public static final String VERSION = "28.3.0";
17+
public static final String VERSION = "28.3.1";
1818

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

0 commit comments

Comments
 (0)