Skip to content

Commit dc8a656

Browse files
release: 0.118.0
1 parent 0145df2 commit dc8a656

File tree

4 files changed

+38
-7
lines changed

4 files changed

+38
-7
lines changed

.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.117.0"
2+
".": "0.118.0"
33
}

CHANGELOG.md

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

3+
## 0.118.0 (2026-02-27)
4+
5+
Full Changelog: [v0.117.0...v0.118.0](https://github.com/lithic-com/lithic-java/compare/v0.117.0...v0.118.0)
6+
7+
### Features
8+
9+
* **api:** Add account holder entity endpoints ([04b301b](https://github.com/lithic-com/lithic-java/commit/04b301b3bfc4669821fb0555bdcea4b5f8484310))
10+
* **api:** Add INTEREST_AND_FEES_PAUSED substatus to financial account ([b533580](https://github.com/lithic-com/lithic-java/commit/b5335809bcdb615e5f8b22f5b7f2b5ea81581219))
11+
* **api:** Expose MIL interest schedules and loan tape configuration endpoints ([54ea41f](https://github.com/lithic-com/lithic-java/commit/54ea41f7aa89aae69fc1120ae232b110fc64b15d))
12+
13+
14+
### Bug Fixes
15+
16+
* **api:** Correct token_metadata field name in tokenization.approval_request schema ([03083cf](https://github.com/lithic-com/lithic-java/commit/03083cf4804c6fa056d0636c516b9037b811cc3a))
17+
* set Accept header in more places ([13de846](https://github.com/lithic-com/lithic-java/commit/13de84622f05d951233a64bf00528f9aa80dc8e1))
18+
19+
20+
### Chores
21+
22+
* drop apache dependency ([6f437cc](https://github.com/lithic-com/lithic-java/commit/6f437cc3dd1cac56e147714a789d1c767284bea6))
23+
* fix card embed endpoints after removing apache dependency ([3d05137](https://github.com/lithic-com/lithic-java/commit/3d051375f098f6c0efc2b24e1cfd08c5f237129b))
24+
* fix card embed endpoints after removing apache dependency ([c64c472](https://github.com/lithic-com/lithic-java/commit/c64c4722e902a963f62ad90526717aa38360dd6b))
25+
* fix card embed endpoints after removing apache dependency [#1567](https://github.com/lithic-com/lithic-java/issues/1567) ([3d05137](https://github.com/lithic-com/lithic-java/commit/3d051375f098f6c0efc2b24e1cfd08c5f237129b))
26+
* **internal:** expand imports ([c03db70](https://github.com/lithic-com/lithic-java/commit/c03db70d19686cd85e06e89b4b134a53ca7fb965))
27+
* make `Properties` more resilient to `null` ([40426af](https://github.com/lithic-com/lithic-java/commit/40426afe752ec8a8bc77e3791deb1376a2efea9b))
28+
29+
30+
### Documentation
31+
32+
* Remove CONDITIONAL_BLOCK from docs ([66d75ce](https://github.com/lithic-com/lithic-java/commit/66d75cea630ef7eac569511680f0666458f5cdfb))
33+
334
## 0.117.0 (2026-02-18)
435

536
Full Changelog: [v0.116.0...v0.117.0](https://github.com/lithic-com/lithic-java/compare/v0.116.0...v0.117.0)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
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.117.0)
6-
[![javadoc](https://javadoc.io/badge2/com.lithic.api/lithic-java/0.117.0/javadoc.svg)](https://javadoc.io/doc/com.lithic.api/lithic-java/0.117.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.118.0)
6+
[![javadoc](https://javadoc.io/badge2/com.lithic.api/lithic-java/0.118.0/javadoc.svg)](https://javadoc.io/doc/com.lithic.api/lithic-java/0.118.0)
77

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

@@ -22,7 +22,7 @@ Use the Lithic MCP Server to enable AI assistants to interact with this API, all
2222
2323
<!-- x-release-please-start-version -->
2424

25-
The REST API documentation can be found on [docs.lithic.com](https://docs.lithic.com). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.lithic.api/lithic-java/0.117.0).
25+
The REST API documentation can be found on [docs.lithic.com](https://docs.lithic.com). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.lithic.api/lithic-java/0.118.0).
2626

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

@@ -33,7 +33,7 @@ The REST API documentation can be found on [docs.lithic.com](https://docs.lithic
3333
### Gradle
3434

3535
```kotlin
36-
implementation("com.lithic.api:lithic-java:0.117.0")
36+
implementation("com.lithic.api:lithic-java:0.118.0")
3737
```
3838

3939
### Maven
@@ -42,7 +42,7 @@ implementation("com.lithic.api:lithic-java:0.117.0")
4242
<dependency>
4343
<groupId>com.lithic.api</groupId>
4444
<artifactId>lithic-java</artifactId>
45-
<version>0.117.0</version>
45+
<version>0.118.0</version>
4646
</dependency>
4747
```
4848

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
allprojects {
1010
group = "com.lithic.api"
11-
version = "0.117.0" // x-release-please-version
11+
version = "0.118.0" // x-release-please-version
1212
}
1313

1414
subprojects {

0 commit comments

Comments
 (0)