Skip to content

Commit 59fe02e

Browse files
Bump version to 26.6.0
1 parent 71b1c2b commit 59fe02e

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

CHANGELOG.md

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

3+
## 26.6.0 - 2024-08-01
4+
* [#1841](https://github.com/stripe/stripe-java/pull/1841) Update generated code
5+
* Add support for new resources `Billing.AlertTriggered` and `Billing.Alert`
6+
* ⚠️ Remove support for `authorization_code` on `Charge.payment_method_details.card`. This was accidentally released last week.
7+
* Add support for new value `billing.alert.triggered` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
8+
39
## 26.5.1 - 2024-07-25
410
* [#1840](https://github.com/stripe/stripe-java/pull/1840) Update generated code
511
* Add support for `tax_registrations` and `tax_settings` on `AccountSession.components` and `AccountSessionCreateParams.components`

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-v26.5.1-blue)](https://mvnrepository.com/artifact/com.stripe/stripe-java)
3+
[![Maven Central](https://img.shields.io/badge/maven--central-v26.6.0-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
[![Coverage Status](https://coveralls.io/repos/github/stripe/stripe-java/badge.svg?branch=master)](https://coveralls.io/github/stripe/stripe-java?branch=master)
@@ -18,7 +18,7 @@ The official [Stripe][stripe] Java client library.
1818
Add this dependency to your project's build file:
1919

2020
```groovy
21-
implementation "com.stripe:stripe-java:26.5.1"
21+
implementation "com.stripe:stripe-java:26.6.0"
2222
```
2323

2424
### Maven users
@@ -29,15 +29,15 @@ Add this dependency to your project's POM:
2929
<dependency>
3030
<groupId>com.stripe</groupId>
3131
<artifactId>stripe-java</artifactId>
32-
<version>26.5.1</version>
32+
<version>26.6.0</version>
3333
</dependency>
3434
```
3535

3636
### Others
3737

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

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

4343
### [ProGuard][proguard]

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
26.5.1
1+
26.6.0

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=26.5.1
2+
VERSION_NAME=26.6.0
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
@@ -13,7 +13,7 @@ public abstract class Stripe {
1313
public static final String CONNECT_API_BASE = "https://connect.stripe.com";
1414
public static final String LIVE_API_BASE = "https://api.stripe.com";
1515
public static final String UPLOAD_API_BASE = "https://files.stripe.com";
16-
public static final String VERSION = "26.5.1";
16+
public static final String VERSION = "26.6.0";
1717

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

0 commit comments

Comments
 (0)