Skip to content

Commit b2cd071

Browse files
release: 0.47.0 (#268)
* feat(api): add event type 'card.reissued' (#267) * feat(api): add methods to simulate enrollment review and enrollment document review (#269) * feat(api)!: rename model property 'Statement.AccountStanding.state' to 'period_state' (#270) feat(api)!: rename model `Statement.AccountState2` to `Statement.PeriodState` # Migration If you were relying on `Statement.AccountStanding.state`, use `period_state` instead. If you were relying on the class `Statement.AccountState2`, use `Statement.PeriodState` instead. Note: while it is technically breaking changes we do not expect that anyone was relying on the previous names. * release: 0.47.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 00c3616 commit b2cd071

37 files changed

Lines changed: 5925 additions & 91 deletions

.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.46.0"
2+
".": "0.47.0"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
configured_endpoints: 128
1+
configured_endpoints: 130

CHANGELOG.md

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

3+
## 0.47.0 (2024-08-09)
4+
5+
Full Changelog: [v0.46.0...v0.47.0](https://github.com/lithic-com/lithic-java/compare/v0.46.0...v0.47.0)
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* **api:** rename model property 'Statement.AccountStanding.state' to 'period_state' ([#270](https://github.com/lithic-com/lithic-java/issues/270))
10+
11+
### Features
12+
13+
* **api:** add event type 'card.reissued' ([#267](https://github.com/lithic-com/lithic-java/issues/267)) ([a9ba8d6](https://github.com/lithic-com/lithic-java/commit/a9ba8d694b9b2d46685670d6c6558819e435710e))
14+
* **api:** add methods to simulate enrollment review and enrollment document review ([#269](https://github.com/lithic-com/lithic-java/issues/269)) ([5396ca9](https://github.com/lithic-com/lithic-java/commit/5396ca9032305f7fa7cbbb0eb0988d7c9cc1e8cf))
15+
* **api:** rename model property 'Statement.AccountStanding.state' to 'period_state' ([#270](https://github.com/lithic-com/lithic-java/issues/270)) ([32b2597](https://github.com/lithic-com/lithic-java/commit/32b2597ccd6923c2d01c86a57d98add6fb55194d))
16+
317
## 0.46.0 (2024-08-05)
418

519
Full Changelog: [v0.45.0...v0.46.0](https://github.com/lithic-com/lithic-java/compare/v0.45.0...v0.46.0)

README.md

Lines changed: 3 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.46.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.47.0)
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.46.0")
28+
implementation("com.lithic.api:lithic-java:0.47.0")
2929
```
3030

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

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.46.0" // x-release-please-version
7+
version = "0.47.0" // x-release-please-version
88
}
99

1010
nexusPublishing {

lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountHolder.kt

Lines changed: 263 additions & 3 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)