Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.541.0"
".": "0.542.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 238
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-894485303846b0d3d71172a30ddb9de5903207874792f84c774e9d9900fe0769.yml
openapi_spec_hash: 9a4d6d3040580b3d0a4e0264dd77127f
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-3996eb5bc3e7f69441c9f098475ef7ae3f9d8aaeea130d75cb40510df996c032.yml
openapi_spec_hash: 569e865a0ab51d0a80eee01a2c8bbb42
config_hash: ac050010e5453883d5e5fa603554a2e0
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.542.0 (2026-05-04)

Full Changelog: [v0.541.0...v0.542.0](https://github.com/Increase/increase-java/compare/v0.541.0...v0.542.0)

### Features

* **api:** api update ([913ad34](https://github.com/Increase/increase-java/commit/913ad34b6114818d6a2ae4b632f3d2b9b0b2e703))


### Chores

* remove duplicated dokka setup ([66808a9](https://github.com/Increase/increase-java/commit/66808a9b6f9361950ae8d16f73164786624418ac))

## 0.541.0 (2026-05-04)

Full Changelog: [v0.540.0...v0.541.0](https://github.com/Increase/increase-java/compare/v0.540.0...v0.541.0)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<!-- x-release-please-start-version -->

[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-java)](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.541.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.541.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.541.0)
[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-java)](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.542.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.542.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.542.0)

<!-- x-release-please-end -->

Expand All @@ -13,7 +13,7 @@ The Increase Java SDK is similar to the Increase Kotlin SDK but with minor diffe

<!-- x-release-please-start-version -->

The REST API documentation can be found on [increase.com](https://increase.com/documentation). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-java/0.541.0).
The REST API documentation can be found on [increase.com](https://increase.com/documentation). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-java/0.542.0).

<!-- x-release-please-end -->

Expand All @@ -24,7 +24,7 @@ The REST API documentation can be found on [increase.com](https://increase.com/d
### Gradle

```kotlin
implementation("com.increase.api:increase-java:0.541.0")
implementation("com.increase.api:increase-java:0.542.0")
```

### Maven
Expand All @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.541.0")
<dependency>
<groupId>com.increase.api</groupId>
<artifactId>increase-java</artifactId>
<version>0.541.0</version>
<version>0.542.0</version>
</dependency>
```

Expand Down
3 changes: 1 addition & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

allprojects {
group = "com.increase.api"
version = "0.541.0" // x-release-please-version
version = "0.542.0" // x-release-please-version
}

subprojects {
Expand All @@ -21,7 +21,6 @@ subprojects {
group = "Verification"
description = "Verifies all source files are formatted."
}
apply(plugin = "org.jetbrains.dokka")
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ internal class BeneficialOwnerCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -101,7 +101,7 @@ internal class BeneficialOwnerCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -162,7 +162,7 @@ internal class BeneficialOwnerCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ internal class BeneficialOwnerUpdateParamsTest {
BeneficialOwnerUpdateParams.Identification.DriversLicense.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -97,7 +97,7 @@ internal class BeneficialOwnerUpdateParamsTest {
BeneficialOwnerUpdateParams.Identification.DriversLicense.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -147,7 +147,7 @@ internal class BeneficialOwnerUpdateParamsTest {
BeneficialOwnerUpdateParams.Identification.DriversLicense.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ internal class EntityCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -128,7 +128,7 @@ internal class EntityCreateParamsTest {
EntityCreateParams.GovernmentAuthority.Address.builder()
.city("x")
.line1("x")
.state("x")
.state("xx")
.zip("x")
.line2("x")
.build()
Expand Down Expand Up @@ -172,7 +172,7 @@ internal class EntityCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -227,7 +227,7 @@ internal class EntityCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -283,7 +283,7 @@ internal class EntityCreateParamsTest {
EntityCreateParams.Trust.Address.builder()
.city("x")
.line1("x")
.state("x")
.state("xx")
.zip("x")
.line2("x")
.build()
Expand Down Expand Up @@ -324,7 +324,7 @@ internal class EntityCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -386,7 +386,7 @@ internal class EntityCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -479,7 +479,7 @@ internal class EntityCreateParamsTest {
LocalDate.parse("2019-12-27")
)
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -550,7 +550,7 @@ internal class EntityCreateParamsTest {
EntityCreateParams.GovernmentAuthority.Address.builder()
.city("x")
.line1("x")
.state("x")
.state("xx")
.zip("x")
.line2("x")
.build()
Expand Down Expand Up @@ -595,7 +595,7 @@ internal class EntityCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -651,7 +651,7 @@ internal class EntityCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -708,7 +708,7 @@ internal class EntityCreateParamsTest {
EntityCreateParams.Trust.Address.builder()
.city("x")
.line1("x")
.state("x")
.state("xx")
.zip("x")
.line2("x")
.build()
Expand Down Expand Up @@ -752,7 +752,7 @@ internal class EntityCreateParamsTest {
LocalDate.parse("2019-12-27")
)
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -818,7 +818,7 @@ internal class EntityCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -904,7 +904,7 @@ internal class EntityCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -970,7 +970,7 @@ internal class EntityCreateParamsTest {
EntityCreateParams.GovernmentAuthority.Address.builder()
.city("x")
.line1("x")
.state("x")
.state("xx")
.zip("x")
.line2("x")
.build()
Expand Down Expand Up @@ -1015,7 +1015,7 @@ internal class EntityCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -1071,7 +1071,7 @@ internal class EntityCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -1132,7 +1132,7 @@ internal class EntityCreateParamsTest {
EntityCreateParams.Trust.Address.builder()
.city("x")
.line1("x")
.state("x")
.state("xx")
.zip("x")
.line2("x")
.build()
Expand Down Expand Up @@ -1173,7 +1173,7 @@ internal class EntityCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down Expand Up @@ -1235,7 +1235,7 @@ internal class EntityCreateParamsTest {
.builder()
.expirationDate(LocalDate.parse("2019-12-27"))
.fileId("file_id")
.state("x")
.state("xx")
.backFileId("back_file_id")
.build()
)
Expand Down
Loading
Loading