Skip to content

Commit

Permalink
release: 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored Jan 7, 2025
1 parent 3a4a79e commit f7dadf5
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 4 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 @@
{
".": "3.1.0"
".": "4.0.0"
}
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,49 @@
# Changelog

## 4.0.0 (2025-01-07)

Full Changelog: [v3.1.0...v4.0.0](https://github.com/Modern-Treasury/modern-treasury-kotlin/compare/v3.1.0...v4.0.0)

### ⚠ BREAKING CHANGES

* **client:** switch query params objects to use `QueryParams` ([#283](https://github.com/Modern-Treasury/modern-treasury-kotlin/issues/283))

### Features

* **client:** put body field in params, add more convenience methods, and add missing docs ([#287](https://github.com/Modern-Treasury/modern-treasury-kotlin/issues/287)) ([c3037e7](https://github.com/Modern-Treasury/modern-treasury-kotlin/commit/c3037e788ec52418e25ce1a46862882134e3093d))


### Bug Fixes

* **client:** allow passing null for nullable fields where missing ([#290](https://github.com/Modern-Treasury/modern-treasury-kotlin/issues/290)) ([f3181b5](https://github.com/Modern-Treasury/modern-treasury-kotlin/commit/f3181b5bf021a3aa37a078b1950f71603a2cb7c2))


### Chores

* bump license year ([#286](https://github.com/Modern-Treasury/modern-treasury-kotlin/issues/286)) ([5c1fcfc](https://github.com/Modern-Treasury/modern-treasury-kotlin/commit/5c1fcfc759167fde824a573fd3e5e58757ba23e8))
* **docs:** add example project ([#281](https://github.com/Modern-Treasury/modern-treasury-kotlin/issues/281)) ([cd4f196](https://github.com/Modern-Treasury/modern-treasury-kotlin/commit/cd4f1965d0fab989c12bc78ca489f2cf1c1e407d))
* **docs:** fix unused import ([#282](https://github.com/Modern-Treasury/modern-treasury-kotlin/issues/282)) ([5aaf526](https://github.com/Modern-Treasury/modern-treasury-kotlin/commit/5aaf526ab0ae4d9e22612c995680e3439517d948))
* **docs:** update readme ([#280](https://github.com/Modern-Treasury/modern-treasury-kotlin/issues/280)) ([95e1838](https://github.com/Modern-Treasury/modern-treasury-kotlin/commit/95e18386d49a47bb3e78cf96570392513a7e7887))
* **internal:** remove unused and expand used wildcard imports ([#275](https://github.com/Modern-Treasury/modern-treasury-kotlin/issues/275)) ([6f1c269](https://github.com/Modern-Treasury/modern-treasury-kotlin/commit/6f1c2693fc378d0a3184b6d0640871daa8fb05ce))
* update parameter examples in tests and docs ([#279](https://github.com/Modern-Treasury/modern-treasury-kotlin/issues/279)) ([e394ff2](https://github.com/Modern-Treasury/modern-treasury-kotlin/commit/e394ff2faa72bad63be5cffc8bf0899aa60c0b84))


### Documentation

* add params class javadocs ([#291](https://github.com/Modern-Treasury/modern-treasury-kotlin/issues/291)) ([3a4a79e](https://github.com/Modern-Treasury/modern-treasury-kotlin/commit/3a4a79e8c0e8def61496474c4723eccfef1a1d13))
* add some missing javadocs ([#288](https://github.com/Modern-Treasury/modern-treasury-kotlin/issues/288)) ([b48841f](https://github.com/Modern-Treasury/modern-treasury-kotlin/commit/b48841f03d84216674eaf1eff53fc0c2ffdf2f9e))


### Styles

* **internal:** sort fields ([#289](https://github.com/Modern-Treasury/modern-treasury-kotlin/issues/289)) ([6fa11e4](https://github.com/Modern-Treasury/modern-treasury-kotlin/commit/6fa11e40cd8454e78c454ae7773feff0f12a8a51))


### Refactors

* **client:** switch query params objects to use `QueryParams` ([#283](https://github.com/Modern-Treasury/modern-treasury-kotlin/issues/283)) ([b032c4e](https://github.com/Modern-Treasury/modern-treasury-kotlin/commit/b032c4e535197b53b1a7fd8dc5f0e465a7607eca))
* **internal:** use constructor to deserialize json ([#284](https://github.com/Modern-Treasury/modern-treasury-kotlin/issues/284)) ([b1aaca1](https://github.com/Modern-Treasury/modern-treasury-kotlin/commit/b1aaca16a18027324ff557c28369b177b74f758e))

## 3.1.0 (2024-12-12)

Full Changelog: [v3.0.0...v3.1.0](https://github.com/Modern-Treasury/modern-treasury-kotlin/compare/v3.0.0...v3.1.0)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The REST API documentation can be found on [docs.moderntreasury.com](https://do
<!-- x-release-please-start-version -->

```kotlin
implementation("com.moderntreasury:modern-treasury-kotlin:3.1.0")
implementation("com.moderntreasury:modern-treasury-kotlin:4.0.0")
```

#### Maven
Expand All @@ -28,7 +28,7 @@ implementation("com.moderntreasury:modern-treasury-kotlin:3.1.0")
<dependency>
<groupId>com.moderntreasury</groupId>
<artifactId>modern-treasury-kotlin</artifactId>
<version>3.1.0</version>
<version>4.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 = "3.1.0" // x-release-please-version
version = "4.0.0" // x-release-please-version
}

nexusPublishing {
Expand Down

0 comments on commit f7dadf5

Please sign in to comment.