Skip to content

Commit 08a7ec1

Browse files
committed
Bump version to 26.9.0
1 parent 60c7252 commit 08a7ec1

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

CHANGELOG.md

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

3+
## 26.9.0 - 2024-08-29
4+
* [#1856](https://github.com/stripe/stripe-java/pull/1856) Generate SDK for OpenAPI spec version 1230
5+
* Change `AccountLinkCreateParams.collection_options.fields` to be optional
6+
* Add support for new value `hr_oib` on enums `CustomerCreateParams.tax_id_data[].type`, `InvoiceCreatePreviewParams.customer_details.tax_ids[].type`, `InvoiceUpcomingLinesParams.customer_details.tax_ids[].type`, `InvoiceUpcomingParams.customer_details.tax_ids[].type`, `TaxIdCreateParams.type`, and `tax.CalculationCreateParams.customer_details.tax_ids[].type`
7+
* Add support for new value `issuing_regulatory_reporting` on enum `FileListParams.purpose`
8+
* Add support for new value `issuing_regulatory_reporting` on enum `FileCreateParams.purpose`
9+
* Add support for `status_details` on `TestHelpers.TestClock`
10+
311
## 26.8.0 - 2024-08-15
412
* [#1847](https://github.com/stripe/stripe-java/pull/1847) Update generated code
513
* Add support for `authorization_code` on `Charge.payment_method_details.card`

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.8.0-blue)](https://mvnrepository.com/artifact/com.stripe/stripe-java)
3+
[![Maven Central](https://img.shields.io/badge/maven--central-v26.9.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.8.0"
21+
implementation "com.stripe:stripe-java:26.9.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.8.0</version>
32+
<version>26.9.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.8.0/stripe-java-26.8.0.jar)
40+
- [The Stripe JAR](https://search.maven.org/remotecontent?filepath=com/stripe/stripe-java/26.9.0/stripe-java-26.9.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.8.0
1+
26.9.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.8.0
2+
VERSION_NAME=26.9.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.8.0";
16+
public static final String VERSION = "26.9.0";
1717

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

0 commit comments

Comments
 (0)