Skip to content

Commit a42eea9

Browse files
release: 7.18.0
1 parent 57b1557 commit a42eea9

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.17.0"
2+
".": "7.18.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.18.0 (2026-03-05)
4+
5+
Full Changelog: [v7.17.0...v7.18.0](https://github.com/Modern-Treasury/modern-treasury-java/compare/v7.17.0...v7.18.0)
6+
7+
### Features
8+
9+
* **api:** api update ([f705697](https://github.com/Modern-Treasury/modern-treasury-java/commit/f705697a1e7faa67c214945a74cd4db7e0f103b5))
10+
* **api:** api update ([6e442c7](https://github.com/Modern-Treasury/modern-treasury-java/commit/6e442c769e4d8b4549110c15d4691d3981f752c4))
11+
* **api:** api update ([5f9df2e](https://github.com/Modern-Treasury/modern-treasury-java/commit/5f9df2e6a09bd4a4ed8afb5682d890ccf20dc744))
12+
* **api:** api update ([72cd033](https://github.com/Modern-Treasury/modern-treasury-java/commit/72cd0334bf7845163a7642cda7883171d323f2da))
13+
* **api:** api update ([bef57a2](https://github.com/Modern-Treasury/modern-treasury-java/commit/bef57a292a51960d4d2ebe2a47806a0afb088553))
14+
* **api:** api update ([c2d39e2](https://github.com/Modern-Treasury/modern-treasury-java/commit/c2d39e2b00662b3e899d4e400c90b1195037dbd8))
15+
16+
17+
### Bug Fixes
18+
19+
* fix request delays for retrying to be more respectful of high requested delays ([e2fe1a0](https://github.com/Modern-Treasury/modern-treasury-java/commit/e2fe1a0aca58f1a9429263a7cb1a17a3f207caa2))
20+
21+
22+
### Chores
23+
24+
* **api:** remove an obsolete reviewer ([5f8ff8c](https://github.com/Modern-Treasury/modern-treasury-java/commit/5f8ff8cae9bacd9dfa9ea0840933d45f89e07ee4))
25+
* drop apache dependency ([671ad82](https://github.com/Modern-Treasury/modern-treasury-java/commit/671ad82e91503385d71d24dbedbd1086f987ed24))
26+
* **internal:** bump palantir-java-format ([c7739bf](https://github.com/Modern-Treasury/modern-treasury-java/commit/c7739bf61ef1229e270fc7819a81b88bd63d6a7e))
27+
* **internal:** expand imports ([8c7d2b2](https://github.com/Modern-Treasury/modern-treasury-java/commit/8c7d2b245b36b637fcdf98508d65b9d1334e1d6f))
28+
* **test:** do not count install time for mock server timeout ([54b7531](https://github.com/Modern-Treasury/modern-treasury-java/commit/54b7531f24836c347357b5ef893fb1519e16c9a0))
29+
330
## 7.17.0 (2026-02-23)
431

532
Full Changelog: [v7.16.0...v7.17.0](https://github.com/Modern-Treasury/modern-treasury-java/compare/v7.16.0...v7.17.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.17.0)
6-
[![javadoc](https://javadoc.io/badge2/com.moderntreasury.api/modern-treasury-java/7.17.0/javadoc.svg)](https://javadoc.io/doc/com.moderntreasury.api/modern-treasury-java/7.17.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.18.0)
6+
[![javadoc](https://javadoc.io/badge2/com.moderntreasury.api/modern-treasury-java/7.18.0/javadoc.svg)](https://javadoc.io/doc/com.moderntreasury.api/modern-treasury-java/7.18.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.17.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.18.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.17.0")
36+
implementation("com.moderntreasury:modern-treasury-java:7.18.0")
3737
```
3838

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

1414
subprojects {

0 commit comments

Comments
 (0)