Skip to content

Commit

Permalink
release: 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored Jan 30, 2025
1 parent 33bf053 commit 1fe5199
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "4.0.1"
".": "5.0.0"
}
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# Changelog

## 5.0.0 (2025-01-30)

Full Changelog: [v4.0.1...v5.0.0](https://github.com/Modern-Treasury/modern-treasury-java/compare/v4.0.1...v5.0.0)

### ⚠ BREAKING CHANGES

* **client:** better union variant method and variable names ([#323](https://github.com/Modern-Treasury/modern-treasury-java/issues/323))

### Features

* **client:** add `_queryParams` and `_headers` methods ([#330](https://github.com/Modern-Treasury/modern-treasury-java/issues/330)) ([fc644d5](https://github.com/Modern-Treasury/modern-treasury-java/commit/fc644d527d79ee6046376ac7855a6ed91e4fcd5f))
* **client:** add `close` method ([#325](https://github.com/Modern-Treasury/modern-treasury-java/issues/325)) ([b1982e9](https://github.com/Modern-Treasury/modern-treasury-java/commit/b1982e9210525308247977b9c428e5baed276f9e))
* **client:** better union variant method and variable names ([#323](https://github.com/Modern-Treasury/modern-treasury-java/issues/323)) ([92d26c3](https://github.com/Modern-Treasury/modern-treasury-java/commit/92d26c398b0e2b9e39afc31550d369bf85ce500e))


### Bug Fixes

* **client:** don't leak responses when retrying ([#332](https://github.com/Modern-Treasury/modern-treasury-java/issues/332)) ([e949ff8](https://github.com/Modern-Treasury/modern-treasury-java/commit/e949ff8485ad4b18938677ffbf0baec43ca419c4))
* **client:** make some classes and constructors non-public ([#328](https://github.com/Modern-Treasury/modern-treasury-java/issues/328)) ([98d1aca](https://github.com/Modern-Treasury/modern-treasury-java/commit/98d1aca07116a31a1431bd968ef5827dedb26749))


### Chores

* add max retries to test ([#324](https://github.com/Modern-Treasury/modern-treasury-java/issues/324)) ([120f5ce](https://github.com/Modern-Treasury/modern-treasury-java/commit/120f5ce9598efbd2d17ec672b31bc90bae4bd27e))
* **internal:** improve `RetryingHttpClientTest` ([#331](https://github.com/Modern-Treasury/modern-treasury-java/issues/331)) ([ae3e2dd](https://github.com/Modern-Treasury/modern-treasury-java/commit/ae3e2ddf83b231e02aa2acf55aa3faca1fef6bb2))
* **internal:** remove some unnecessary `constructor` keywords ([98d1aca](https://github.com/Modern-Treasury/modern-treasury-java/commit/98d1aca07116a31a1431bd968ef5827dedb26749))
* **internal:** swap `checkNotNull` to `checkRequired` ([#321](https://github.com/Modern-Treasury/modern-treasury-java/issues/321)) ([a5cacf6](https://github.com/Modern-Treasury/modern-treasury-java/commit/a5cacf6b824228abd81814630e8b4bc034ae5b20))


### Documentation

* `async` and `sync` method comments ([#327](https://github.com/Modern-Treasury/modern-treasury-java/issues/327)) ([fae2ea1](https://github.com/Modern-Treasury/modern-treasury-java/commit/fae2ea1af8d7d253bad11b2cbd1bdfd669231744))
* add client documentation ([#326](https://github.com/Modern-Treasury/modern-treasury-java/issues/326)) ([2f65e9c](https://github.com/Modern-Treasury/modern-treasury-java/commit/2f65e9c11f349edb7122d717b6325c833342deec))
* builder, enum, and union comments ([#329](https://github.com/Modern-Treasury/modern-treasury-java/issues/329)) ([42142b6](https://github.com/Modern-Treasury/modern-treasury-java/commit/42142b6442259523def83b98cc8b5cbfbfd4393f))
* fix incorrect additional properties info ([#333](https://github.com/Modern-Treasury/modern-treasury-java/issues/333)) ([33bf053](https://github.com/Modern-Treasury/modern-treasury-java/commit/33bf05347a1bacee6b5dac57f3e5738855656f41))


### Refactors

* **internal:** extract request preparation logic ([fc644d5](https://github.com/Modern-Treasury/modern-treasury-java/commit/fc644d527d79ee6046376ac7855a6ed91e4fcd5f))

## 4.0.1 (2025-01-22)

Full Changelog: [v4.0.0...v4.0.1](https://github.com/Modern-Treasury/modern-treasury-java/compare/v4.0.0...v4.0.1)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!-- x-release-please-start-version -->

[![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)
[![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/5.0.0)

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

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

```kotlin
implementation("com.moderntreasury:modern-treasury-java:4.0.1")
implementation("com.moderntreasury:modern-treasury-java:5.0.0")
```

### Maven
Expand All @@ -28,7 +28,7 @@ implementation("com.moderntreasury:modern-treasury-java:4.0.1")
<dependency>
<groupId>com.moderntreasury</groupId>
<artifactId>modern-treasury-java</artifactId>
<version>4.0.1</version>
<version>5.0.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

allprojects {
group = "com.moderntreasury"
version = "4.0.1" // x-release-please-version
version = "5.0.0" // x-release-please-version
}

nexusPublishing {
Expand Down

0 comments on commit 1fe5199

Please sign in to comment.