Skip to content

Commit 74346c8

Browse files
release: 4.0.1
1 parent 2f7cbdd commit 74346c8

File tree

4 files changed

+31
-5
lines changed

4 files changed

+31
-5
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-
".": "4.0.0"
2+
".": "4.0.1"
33
}

CHANGELOG.md

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

3+
## 4.0.1 (2025-01-22)
4+
5+
Full Changelog: [v4.0.0...v4.0.1](https://github.com/Modern-Treasury/modern-treasury-java/compare/v4.0.0...v4.0.1)
6+
7+
### Bug Fixes
8+
9+
* **client:** make service impl constructors internal ([#316](https://github.com/Modern-Treasury/modern-treasury-java/issues/316)) ([1b1c1b3](https://github.com/Modern-Treasury/modern-treasury-java/commit/1b1c1b3098fc430323e726ff43772e9feaddffd7))
10+
11+
12+
### Chores
13+
14+
* **api:** adds new APIs for LedgerAccountSettlement LedgerEntries ([#318](https://github.com/Modern-Treasury/modern-treasury-java/issues/318)) ([5f77282](https://github.com/Modern-Treasury/modern-treasury-java/commit/5f77282a93fdd0641477a1f66219628d28d37baa))
15+
* change casing of organization in license ([#317](https://github.com/Modern-Treasury/modern-treasury-java/issues/317)) ([45fa3de](https://github.com/Modern-Treasury/modern-treasury-java/commit/45fa3de11b33be4dfa3117b5ab4ff20777d1acec))
16+
* **internal:** add and tweak check functions ([#310](https://github.com/Modern-Treasury/modern-treasury-java/issues/310)) ([9edca46](https://github.com/Modern-Treasury/modern-treasury-java/commit/9edca468973334a2f4de6c24aa7e0f0459f9996d))
17+
* **internal:** tweak client options nullability handling ([9edca46](https://github.com/Modern-Treasury/modern-treasury-java/commit/9edca468973334a2f4de6c24aa7e0f0459f9996d))
18+
* **internal:** upgrade kotlin compiler and gradle ([#314](https://github.com/Modern-Treasury/modern-treasury-java/issues/314)) ([ea7bc1b](https://github.com/Modern-Treasury/modern-treasury-java/commit/ea7bc1b1d2c3d1e7a6a1b3d9523648ba1b1cff27))
19+
* simplify examples involving lists ([#312](https://github.com/Modern-Treasury/modern-treasury-java/issues/312)) ([c2db3bc](https://github.com/Modern-Treasury/modern-treasury-java/commit/c2db3bc75129898e9caa25120dca63e6f336da24))
20+
* simplify examples involving unions ([#313](https://github.com/Modern-Treasury/modern-treasury-java/issues/313)) ([c586d5b](https://github.com/Modern-Treasury/modern-treasury-java/commit/c586d5bca399028dcab29fd3dcf8309751c8c705))
21+
22+
23+
### Documentation
24+
25+
* add more documentation ([#315](https://github.com/Modern-Treasury/modern-treasury-java/issues/315)) ([dbf635a](https://github.com/Modern-Treasury/modern-treasury-java/commit/dbf635a618784f3612c9116c6b64ea244e3dcb3b))
26+
* move up requirements section ([#320](https://github.com/Modern-Treasury/modern-treasury-java/issues/320)) ([3cf79ca](https://github.com/Modern-Treasury/modern-treasury-java/commit/3cf79cab69e4f5680d59c7aab0e5c9f88c5cfaf8))
27+
* update readme ([#319](https://github.com/Modern-Treasury/modern-treasury-java/issues/319)) ([45d107f](https://github.com/Modern-Treasury/modern-treasury-java/commit/45d107f04b61af73a5e51ddc7b2263d1e4fe49a0))
28+
329
## 4.0.0 (2025-01-14)
430

531
Full Changelog: [v3.1.0...v4.0.0](https://github.com/Modern-Treasury/modern-treasury-java/compare/v3.1.0...v4.0.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.moderntreasury.api/modern-treasury-java)](https://central.sonatype.com/artifact/com.moderntreasury.api/modern-treasury-java/4.0.0)
5+
[![Maven Central](https://img.shields.io/maven-central/v/com.moderntreasury.api/modern-treasury-java)](https://central.sonatype.com/artifact/com.moderntreasury.api/modern-treasury-java/4.0.1)
66

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

@@ -19,7 +19,7 @@ The REST API documentation can be found on [docs.moderntreasury.com](https://doc
1919
### Gradle
2020

2121
```kotlin
22-
implementation("com.moderntreasury:modern-treasury-java:4.0.0")
22+
implementation("com.moderntreasury:modern-treasury-java:4.0.1")
2323
```
2424

2525
### Maven
@@ -28,7 +28,7 @@ implementation("com.moderntreasury:modern-treasury-java:4.0.0")
2828
<dependency>
2929
<groupId>com.moderntreasury</groupId>
3030
<artifactId>modern-treasury-java</artifactId>
31-
<version>4.0.0</version>
31+
<version>4.0.1</version>
3232
</dependency>
3333
```
3434

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

1010
nexusPublishing {

0 commit comments

Comments
 (0)