diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a6fc929e..b8dda9bf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.28.1" + ".": "0.29.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 7658c50a..294745fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 0.29.0 (2024-02-22) + +Full Changelog: [v0.28.1...v0.29.0](https://github.com/lithic-com/lithic-java/compare/v0.28.1...v0.29.0) + +### Features + +* **api:** create financial account and retry microdeposits endpoints ([#163](https://github.com/lithic-com/lithic-java/issues/163)) ([d9cafd6](https://github.com/lithic-com/lithic-java/commit/d9cafd6f1944e9aec54d8a6603c3ca77f342345e)) +* **api:** update financial_account_type and documentation ([#162](https://github.com/lithic-com/lithic-java/issues/162)) ([b30ed81](https://github.com/lithic-com/lithic-java/commit/b30ed8192e18a8aaac8e74da9521203e7fa01e75)) + + +### Chores + +* **internal:** refactor release environment script ([#159](https://github.com/lithic-com/lithic-java/issues/159)) ([f57f00d](https://github.com/lithic-com/lithic-java/commit/f57f00dcc0528ea707f3f2c48864e19f78e1080f)) +* update dependency org.apache.httpcomponents.core5:httpcore5 to v5.2.4 ([#164](https://github.com/lithic-com/lithic-java/issues/164)) ([a98d5ba](https://github.com/lithic-com/lithic-java/commit/a98d5ba599f43e436391dfd97b1b528022b690c3)) + ## 0.28.1 (2024-02-12) Full Changelog: [v0.28.0...v0.28.1](https://github.com/lithic-com/lithic-java/compare/v0.28.0...v0.28.1) diff --git a/README.md b/README.md index 01145b16..9a7c42ce 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.lithic.api/lithic-java)](https://central.sonatype.com/artifact/com.lithic.api/lithic-java/0.28.1) +[![Maven Central](https://img.shields.io/maven-central/v/com.lithic.api/lithic-java)](https://central.sonatype.com/artifact/com.lithic.api/lithic-java/0.29.0) @@ -25,7 +25,7 @@ The REST API documentation can be foundĀ [on docs.lithic.com](https://docs.lithi ```kotlin -implementation("com.lithic.api:lithic-java:0.28.1") +implementation("com.lithic.api:lithic-java:0.29.0") ``` #### Maven @@ -34,7 +34,7 @@ implementation("com.lithic.api:lithic-java:0.28.1") com.lithic.api lithic-java - 0.28.1 + 0.29.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 83d0af57..b35805a9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { allprojects { group = "com.lithic.api" - version = "0.28.1" // x-release-please-version + version = "0.29.0" // x-release-please-version } nexusPublishing {