File tree 5 files changed +10
-7
lines changed
5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
6
## 28.3.0 - 2025-01-27
4
7
* [ #1936 ] ( https://github.com/stripe/stripe-java/pull/1936 ) Update generated code
5
8
* Add support for ` close ` method on resource ` Treasury.FinancialAccount `
Original file line number Diff line number Diff line change 1
1
# Stripe Java client library
2
2
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 )
4
4
[ ![ JavaDoc] ( http://img.shields.io/badge/javadoc-reference-blue.svg )] ( https://stripe.dev/stripe-java )
5
5
[ ![ 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 )
6
6
@@ -17,7 +17,7 @@ The official [Stripe][stripe] Java client library.
17
17
Add this dependency to your project's build file:
18
18
19
19
``` groovy
20
- implementation "com.stripe:stripe-java:28.3.0 "
20
+ implementation "com.stripe:stripe-java:28.3.1 "
21
21
```
22
22
23
23
### Maven users
@@ -28,15 +28,15 @@ Add this dependency to your project's POM:
28
28
<dependency >
29
29
<groupId >com.stripe</groupId >
30
30
<artifactId >stripe-java</artifactId >
31
- <version >28.3.0 </version >
31
+ <version >28.3.1 </version >
32
32
</dependency >
33
33
```
34
34
35
35
### Others
36
36
37
37
You'll need to manually install the following JARs:
38
38
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 )
40
40
- [ Google Gson] [ gson ] from < https://repo1.maven.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar > .
41
41
42
42
### [ ProGuard] [ proguard ]
Original file line number Diff line number Diff line change 1
- 28.3.0
1
+ 28.3.1
Original file line number Diff line number Diff line change 1
1
GROUP =com.stripe
2
- VERSION_NAME =28.3.0
2
+ VERSION_NAME =28.3.1
3
3
4
4
POM_URL =https://github.com/stripe/stripe-java
5
5
POM_SCM_URL =git@github.com:stripe/stripe-java.git
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public abstract class Stripe {
14
14
public static final String LIVE_API_BASE = "https://api.stripe.com" ;
15
15
public static final String UPLOAD_API_BASE = "https://files.stripe.com" ;
16
16
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 " ;
18
18
19
19
public static volatile String apiKey ;
20
20
public static volatile String clientId ;
You can’t perform that action at this time.
0 commit comments