Skip to content

Commit 7341c56

Browse files
release: 0.39.1 (#243)
* chore: gitignore test server logs (#242) * chore(docs): document minimum Java version (Java 8) in README (#244) * chore(ci): also run workflows for PRs targeting `next` (#245) * docs(examples): update example values (#246) * release: 0.39.1 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 33e950f commit 7341c56

110 files changed

Lines changed: 796 additions & 729 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
pull_request:
77
branches:
88
- main
9+
- next
910

1011
jobs:
1112
lint:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.prism.log
12
.gradle
23
.idea
34
build

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.39.0"
2+
".": "0.39.1"
33
}

CHANGELOG.md

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

3+
## 0.39.1 (2024-07-11)
4+
5+
Full Changelog: [v0.39.0...v0.39.1](https://github.com/lithic-com/lithic-java/compare/v0.39.0...v0.39.1)
6+
7+
### Chores
8+
9+
* **ci:** also run workflows for PRs targeting `next` ([#245](https://github.com/lithic-com/lithic-java/issues/245)) ([c54f42d](https://github.com/lithic-com/lithic-java/commit/c54f42dcfacd308ca991622ddc48cb336b3603d6))
10+
* **docs:** document minimum Java version (Java 8) in README ([#244](https://github.com/lithic-com/lithic-java/issues/244)) ([a2abfe0](https://github.com/lithic-com/lithic-java/commit/a2abfe022b630885c368234d402777e943738929))
11+
* gitignore test server logs ([#242](https://github.com/lithic-com/lithic-java/issues/242)) ([d162867](https://github.com/lithic-com/lithic-java/commit/d16286734a7dc979c021e1ca77554aba9277b3d3))
12+
13+
14+
### Documentation
15+
16+
* **examples:** update example values ([#246](https://github.com/lithic-com/lithic-java/issues/246)) ([3a5e4b0](https://github.com/lithic-com/lithic-java/commit/3a5e4b081842ec1c391f114e28cac5223c957dc0))
17+
318
## 0.39.0 (2024-06-21)
419

520
Full Changelog: [v0.38.0...v0.39.0](https://github.com/lithic-com/lithic-java/compare/v0.38.0...v0.39.0)

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
[![Maven Central](https://img.shields.io/maven-central/v/com.lithic.api/lithic-java)](https://central.sonatype.com/artifact/com.lithic.api/lithic-java/0.39.0)
5+
[![Maven Central](https://img.shields.io/maven-central/v/com.lithic.api/lithic-java)](https://central.sonatype.com/artifact/com.lithic.api/lithic-java/0.39.1)
66

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

@@ -25,7 +25,7 @@ The REST API documentation can be found [on docs.lithic.com](https://docs.lithi
2525
<!-- x-release-please-start-version -->
2626

2727
```kotlin
28-
implementation("com.lithic.api:lithic-java:0.39.0")
28+
implementation("com.lithic.api:lithic-java:0.39.1")
2929
```
3030

3131
#### Maven
@@ -34,7 +34,7 @@ implementation("com.lithic.api:lithic-java:0.39.0")
3434
<dependency>
3535
<groupId>com.lithic.api</groupId>
3636
<artifactId>lithic-java</artifactId>
37-
<version>0.39.0</version>
37+
<version>0.39.1</version>
3838
</dependency>
3939
```
4040

@@ -365,3 +365,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
365365
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
366366

367367
We are keen for your feedback; please open an [issue](https://www.github.com/lithic-com/lithic-java/issues) with questions, bugs, or suggestions.
368+
369+
## Requirements
370+
371+
This library requires Java 8 or later.

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
allprojects {
66
group = "com.lithic.api"
7-
version = "0.39.0" // x-release-please-version
7+
version = "0.39.1" // x-release-please-version
88
}
99

1010
nexusPublishing {

lithic-java-core/src/test/kotlin/com/lithic/api/models/AccountHolderCreateParamsTest.kt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ class AccountHolderCreateParamsTest {
2222
.country("USA")
2323
.postalCode("68022")
2424
.state("NE")
25-
.address2("string")
25+
.address2("address2")
2626
.build()
2727
)
2828
.governmentId("114-123-1513")
2929
.legalBusinessName("Acme, Inc.")
3030
.phoneNumbers(listOf("+12124007676"))
31-
.dbaBusinessName("string")
32-
.parentCompany("string")
31+
.dbaBusinessName("dba_business_name")
32+
.parentCompany("parent_company")
3333
.build()
3434
)
3535
)
@@ -43,7 +43,7 @@ class AccountHolderCreateParamsTest {
4343
.country("USA")
4444
.postalCode("68022")
4545
.state("NE")
46-
.address2("string")
46+
.address2("address2")
4747
.build()
4848
)
4949
.dob("1991-03-08 08:00:00")
@@ -64,14 +64,14 @@ class AccountHolderCreateParamsTest {
6464
.country("USA")
6565
.postalCode("68022")
6666
.state("NE")
67-
.address2("string")
67+
.address2("address2")
6868
.build()
6969
)
7070
.governmentId("114-123-1513")
7171
.legalBusinessName("Acme, Inc.")
7272
.phoneNumbers(listOf("+12124007676"))
73-
.dbaBusinessName("string")
74-
.parentCompany("string")
73+
.dbaBusinessName("dba_business_name")
74+
.parentCompany("parent_company")
7575
.build()
7676
)
7777
.controlPerson(
@@ -83,7 +83,7 @@ class AccountHolderCreateParamsTest {
8383
.country("USA")
8484
.postalCode("68022")
8585
.state("NE")
86-
.address2("string")
86+
.address2("address2")
8787
.build()
8888
)
8989
.dob("1991-03-08 08:00:00")
@@ -99,7 +99,7 @@ class AccountHolderCreateParamsTest {
9999
)
100100
.tosTimestamp("2018-05-29T21:16:05Z")
101101
.workflow(Kyb.Workflow.KYB_BASIC)
102-
.externalId("string")
102+
.externalId("external_id")
103103
.kybPassedTimestamp("2018-05-29T21:16:05Z")
104104
.websiteUrl("www.mybusiness.com")
105105
.build()

lithic-java-core/src/test/kotlin/com/lithic/api/models/AccountHolderCreateResponseTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class AccountHolderCreateResponseTest {
1919
listOf(AccountHolderCreateResponse.StatusReason.ADDRESS_VERIFICATION_FAILURE)
2020
)
2121
.created(OffsetDateTime.parse("2019-12-27T18:11:19.117Z"))
22-
.externalId("string")
22+
.externalId("external_id")
2323
.build()
2424
assertThat(accountHolderCreateResponse).isNotNull
2525
assertThat(accountHolderCreateResponse.token())
@@ -32,6 +32,6 @@ class AccountHolderCreateResponseTest {
3232
.containsExactly(AccountHolderCreateResponse.StatusReason.ADDRESS_VERIFICATION_FAILURE)
3333
assertThat(accountHolderCreateResponse.created())
3434
.contains(OffsetDateTime.parse("2019-12-27T18:11:19.117Z"))
35-
assertThat(accountHolderCreateResponse.externalId()).contains("string")
35+
assertThat(accountHolderCreateResponse.externalId()).contains("external_id")
3636
}
3737
}

lithic-java-core/src/test/kotlin/com/lithic/api/models/AccountHolderDocumentTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class AccountHolderDocumentTest {
2525
.BACK_IMAGE_BLURRY
2626
)
2727
)
28-
.uploadUrl("string")
28+
.uploadUrl("upload_url")
2929
.build()
3030
)
3131
)
@@ -47,7 +47,7 @@ class AccountHolderDocumentTest {
4747
.BACK_IMAGE_BLURRY
4848
)
4949
)
50-
.uploadUrl("string")
50+
.uploadUrl("upload_url")
5151
.build()
5252
)
5353
}

lithic-java-core/src/test/kotlin/com/lithic/api/models/AccountHolderListDocumentsResponseTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class AccountHolderListDocumentsResponseTest {
3535
.BACK_IMAGE_BLURRY
3636
)
3737
)
38-
.uploadUrl("string")
38+
.uploadUrl("upload_url")
3939
.build()
4040
)
4141
)
@@ -65,7 +65,7 @@ class AccountHolderListDocumentsResponseTest {
6565
.BACK_IMAGE_BLURRY
6666
)
6767
)
68-
.uploadUrl("string")
68+
.uploadUrl("upload_url")
6969
.build()
7070
)
7171
)

0 commit comments

Comments
 (0)