From e07007c550254e3f86a8b2c35c57fc81b382f3b3 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 2 Jan 2025 20:29:45 +0000 Subject: [PATCH] release: 4.0.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 23 +++++++++++++++++++++++ README.md | 4 ++-- build.gradle.kts | 2 +- 4 files changed, 27 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e0dc5001..127ac87b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.1.0" + ".": "4.0.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 273c599d..d00ef804 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## 4.0.0 (2025-01-02) + +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)) + +### 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)) + + +### 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) diff --git a/README.md b/README.md index ca2dc067..bcf726bf 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ The REST API documentation can be found on [docs.moderntreasury.com](https://do ```kotlin -implementation("com.moderntreasury:modern-treasury-kotlin:3.1.0") +implementation("com.moderntreasury:modern-treasury-kotlin:4.0.0") ``` #### Maven @@ -28,7 +28,7 @@ implementation("com.moderntreasury:modern-treasury-kotlin:3.1.0") com.moderntreasury modern-treasury-kotlin - 3.1.0 + 4.0.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index db33fbe8..fe97607c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 {