diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fed4b17f..c3e01e1e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.52.0" + ".": "0.53.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index e1eab3e9..d4d246c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.53.0 (2024-08-23) + +Full Changelog: [v0.52.0...v0.53.0](https://github.com/lithic-com/lithic-java/compare/v0.52.0...v0.53.0) + +### Features + +* **api:** add endpoints and webhooks for 3DS challenge decisions and challenges ([#287](https://github.com/lithic-com/lithic-java/issues/287)) ([a3df387](https://github.com/lithic-com/lithic-java/commit/a3df38765c7ec4487ae78a01d1f4b783fcd91309)) + ## 0.52.0 (2024-08-23) Full Changelog: [v0.51.2...v0.52.0](https://github.com/lithic-com/lithic-java/compare/v0.51.2...v0.52.0) diff --git a/README.md b/README.md index 82c73568..a7c5c3f5 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.52.0) +[![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.53.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.52.0") +implementation("com.lithic.api:lithic-java:0.53.0") ``` #### Maven @@ -34,7 +34,7 @@ implementation("com.lithic.api:lithic-java:0.52.0") com.lithic.api lithic-java - 0.52.0 + 0.53.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 646c8dfe..55c74824 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { allprojects { group = "com.lithic.api" - version = "0.52.0" // x-release-please-version + version = "0.53.0" // x-release-please-version } nexusPublishing {