diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4191c889..56441f9d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.0.0" + ".": "3.0.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index afc9cc22..e0d7c958 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 3.0.1 (2024-11-19) + +Full Changelog: [v3.0.0...v3.0.1](https://github.com/Modern-Treasury/modern-treasury-java/compare/v3.0.0...v3.0.1) + +### Chores + +* **api:** additional fields for requests to get BalanceReports and create LegalEntities ([#265](https://github.com/Modern-Treasury/modern-treasury-java/issues/265)) ([27e70aa](https://github.com/Modern-Treasury/modern-treasury-java/commit/27e70aa92cfa79b6725edb6b752b5c6da9556056)) +* **deps:** bump jackson to 2.18.1 ([#268](https://github.com/Modern-Treasury/modern-treasury-java/issues/268)) ([7c2116f](https://github.com/Modern-Treasury/modern-treasury-java/commit/7c2116fa85135e33d75357968ef7dea877311df7)) + + +### Refactors + +* **internal:** split `closeWhenPhantomReachable` function ([#267](https://github.com/Modern-Treasury/modern-treasury-java/issues/267)) ([0c07297](https://github.com/Modern-Treasury/modern-treasury-java/commit/0c0729726470a0ff8bbfe3fc5a07afd9c9d8a95d)) + ## 3.0.0 (2024-11-11) Full Changelog: [v2.22.0...v3.0.0](https://github.com/Modern-Treasury/modern-treasury-java/compare/v2.22.0...v3.0.0) diff --git a/README.md b/README.md index 5908e7bf..8e9931f5 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ -[![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/3.0.0) +[![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/3.0.1) @@ -25,7 +25,7 @@ The REST API documentation can be foundĀ on [docs.moderntreasury.com](https://do ```kotlin -implementation("com.moderntreasury:modern-treasury-java:3.0.0") +implementation("com.moderntreasury:modern-treasury-java:3.0.1") ``` #### Maven @@ -34,7 +34,7 @@ implementation("com.moderntreasury:modern-treasury-java:3.0.0") com.moderntreasury modern-treasury-java - 3.0.0 + 3.0.1 ``` diff --git a/build.gradle.kts b/build.gradle.kts index cb763e9a..064ad276 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { allprojects { group = "com.moderntreasury" - version = "3.0.0" // x-release-please-version + version = "3.0.1" // x-release-please-version } nexusPublishing {