Skip to content

Commit c0e8a01

Browse files
release: 7.24.0
1 parent adde49d commit c0e8a01

File tree

4 files changed

+34
-7
lines changed

4 files changed

+34
-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-
".": "7.23.0"
2+
".": "7.24.0"
33
}

CHANGELOG.md

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

3+
## 7.24.0 (2026-03-25)
4+
5+
Full Changelog: [v7.23.0...v7.24.0](https://github.com/Modern-Treasury/modern-treasury-java/compare/v7.23.0...v7.24.0)
6+
7+
### Features
8+
9+
* **api:** api update ([5ea568b](https://github.com/Modern-Treasury/modern-treasury-java/commit/5ea568bac0aa46a13df0682f2b2788633a8d41d7))
10+
* **api:** api update ([9316fcc](https://github.com/Modern-Treasury/modern-treasury-java/commit/9316fcc5a1e01a2058e7142ed8ac51e77e7a2db7))
11+
* **api:** api update ([6ad985a](https://github.com/Modern-Treasury/modern-treasury-java/commit/6ad985ab1459ebefa0a8bdea57b7d5940fb334d7))
12+
* **api:** api update ([5db9058](https://github.com/Modern-Treasury/modern-treasury-java/commit/5db90589dc415fe3208910a076164e6143144405))
13+
* **api:** switch back to prism mock server ([b26b695](https://github.com/Modern-Treasury/modern-treasury-java/commit/b26b6953264baa0ab76ccacd3f4b0523cc6fe259))
14+
15+
16+
### Chores
17+
18+
* **ci:** skip lint on metadata-only changes ([cf32530](https://github.com/Modern-Treasury/modern-treasury-java/commit/cf32530035513ad8c32d4f416f19cdee10506718))
19+
* **internal:** update gitignore ([10e8fab](https://github.com/Modern-Treasury/modern-treasury-java/commit/10e8fabca3384943b3ac3eb46a2a865a7225d226))
20+
* **tests:** bump steady to v0.19.4 ([08b087f](https://github.com/Modern-Treasury/modern-treasury-java/commit/08b087fa81a0113b742e398eef9bf6659b56e788))
21+
* **tests:** bump steady to v0.19.5 ([a0b5ddc](https://github.com/Modern-Treasury/modern-treasury-java/commit/a0b5ddc3e9ca4f6260592a3f10d6a54caad70320))
22+
* **tests:** bump steady to v0.19.6 ([7ef5088](https://github.com/Modern-Treasury/modern-treasury-java/commit/7ef5088a5a8fd1e4bc421d21ed313afbe96e994c))
23+
* **tests:** bump steady to v0.19.7 ([a3033f6](https://github.com/Modern-Treasury/modern-treasury-java/commit/a3033f6dedafd4134182a683614ab38e9d9a1526))
24+
25+
26+
### Refactors
27+
28+
* **tests:** switch from prism to steady ([d05d9c7](https://github.com/Modern-Treasury/modern-treasury-java/commit/d05d9c784ce81a1a4bbeb4891d6ada242696db32))
29+
330
## 7.23.0 (2026-03-18)
431

532
Full Changelog: [v7.22.0...v7.23.0](https://github.com/Modern-Treasury/modern-treasury-java/compare/v7.22.0...v7.23.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.moderntreasury.api/modern-treasury-java)](https://central.sonatype.com/artifact/com.moderntreasury.api/modern-treasury-java/7.23.0)
6-
[![javadoc](https://javadoc.io/badge2/com.moderntreasury.api/modern-treasury-java/7.23.0/javadoc.svg)](https://javadoc.io/doc/com.moderntreasury.api/modern-treasury-java/7.23.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/7.24.0)
6+
[![javadoc](https://javadoc.io/badge2/com.moderntreasury.api/modern-treasury-java/7.24.0/javadoc.svg)](https://javadoc.io/doc/com.moderntreasury.api/modern-treasury-java/7.24.0)
77

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

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

25-
The REST API documentation can be found on [docs.moderntreasury.com](https://docs.moderntreasury.com). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.moderntreasury.api/modern-treasury-java/7.23.0).
25+
The REST API documentation can be found on [docs.moderntreasury.com](https://docs.moderntreasury.com). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.moderntreasury.api/modern-treasury-java/7.24.0).
2626

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

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

3535
```kotlin
36-
implementation("com.moderntreasury:modern-treasury-java:7.23.0")
36+
implementation("com.moderntreasury:modern-treasury-java:7.24.0")
3737
```
3838

3939
### Maven
@@ -42,7 +42,7 @@ implementation("com.moderntreasury:modern-treasury-java:7.23.0")
4242
<dependency>
4343
<groupId>com.moderntreasury</groupId>
4444
<artifactId>modern-treasury-java</artifactId>
45-
<version>7.23.0</version>
45+
<version>7.24.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.moderntreasury"
11-
version = "7.23.0" // x-release-please-version
11+
version = "7.24.0" // x-release-please-version
1212
}
1313

1414
subprojects {

0 commit comments

Comments
 (0)