diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1332969b..c7159c1a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.1" + ".": "0.0.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..6db3ba0e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +## 0.0.2 (2023-09-19) + +Full Changelog: [v0.0.1...v0.0.2](https://github.com/Finch-API/finch-api-kotlin/compare/v0.0.1...v0.0.2) + +### Features + +* **client:** retry on 408 Request Timeout ([#5](https://github.com/Finch-API/finch-api-kotlin/issues/5)) ([55f5fd6](https://github.com/Finch-API/finch-api-kotlin/commit/55f5fd6381bb2d2d02bb4b4ec31e24a45cc1da84)) +* **init:** initial commit ([670bd4e](https://github.com/Finch-API/finch-api-kotlin/commit/670bd4ea3631f0537cf7df789aa2176f9580faed)) + + +### Chores + +* **api:** remove deprecated & unused ATS API ([#8](https://github.com/Finch-API/finch-api-kotlin/issues/8)) ([0b42c6c](https://github.com/Finch-API/finch-api-kotlin/commit/0b42c6c72b75c3e9f2b7542bb2866b71cb95f1fb)) diff --git a/README.md b/README.md index 5d218cda..02b8045e 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ The API documentation can be foundĀ [here](https://developer.tryfinch.com/). ```kotlin -implementation("com.tryfinch.api:finch-kotlin:0.0.1") +implementation("com.tryfinch.api:finch-kotlin:0.0.2") ``` #### Maven @@ -28,7 +28,7 @@ implementation("com.tryfinch.api:finch-kotlin:0.0.1") com.tryfinch.api finch-kotlin - 0.0.1 + 0.0.2 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 6b8054da..28c3b8f8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { allprojects { group = "com.tryfinch.api" - version = "0.0.1" // x-release-please-version + version = "0.0.2" // x-release-please-version } nexusPublishing {