From 30f027146276a8a894bacc9867fbf0afe0006a34 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 9 Jan 2025 23:48:55 +0000 Subject: [PATCH 1/2] feat(api): api update (#391) --- .stats.yml | 2 +- .../api/models/HrisPayStatementRetrieveManyParamsTest.kt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.stats.yml b/.stats.yml index c5beadd4..3f80b45c 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 40 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-cf610d4dbb7e3d84161b5783a0861b2e551422eb5cf727dde86a839325d7ef76.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-77520f5037161db86208e3a9d3f36f39e971a8ee10b1d9972a22c084fcf21845.yml diff --git a/finch-java-core/src/test/kotlin/com/tryfinch/api/models/HrisPayStatementRetrieveManyParamsTest.kt b/finch-java-core/src/test/kotlin/com/tryfinch/api/models/HrisPayStatementRetrieveManyParamsTest.kt index 178ecd14..af667e5b 100644 --- a/finch-java-core/src/test/kotlin/com/tryfinch/api/models/HrisPayStatementRetrieveManyParamsTest.kt +++ b/finch-java-core/src/test/kotlin/com/tryfinch/api/models/HrisPayStatementRetrieveManyParamsTest.kt @@ -14,7 +14,7 @@ class HrisPayStatementRetrieveManyParamsTest { listOf( HrisPayStatementRetrieveManyParams.Request.builder() .paymentId("string") - .limit(0L) + .limit(50L) .offset(0L) .build() ) @@ -30,7 +30,7 @@ class HrisPayStatementRetrieveManyParamsTest { listOf( HrisPayStatementRetrieveManyParams.Request.builder() .paymentId("string") - .limit(0L) + .limit(50L) .offset(0L) .build() ) @@ -43,7 +43,7 @@ class HrisPayStatementRetrieveManyParamsTest { listOf( HrisPayStatementRetrieveManyParams.Request.builder() .paymentId("string") - .limit(0L) + .limit(50L) .offset(0L) .build() ) From 0c90b3e21048bd7a7b230453cc4a138287c88a81 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 9 Jan 2025 23:49:23 +0000 Subject: [PATCH 2/2] release: 3.3.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 6 +++--- build.gradle.kts | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1f73031b..ff1c7af5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.2.0" + ".": "3.3.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b31127e..77bea789 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 3.3.0 (2025-01-09) + +Full Changelog: [v3.2.0...v3.3.0](https://github.com/Finch-API/finch-api-java/compare/v3.2.0...v3.3.0) + +### Features + +* **api:** api update ([#391](https://github.com/Finch-API/finch-api-java/issues/391)) ([30f0271](https://github.com/Finch-API/finch-api-java/commit/30f027146276a8a894bacc9867fbf0afe0006a34)) + ## 3.2.0 (2025-01-08) Full Changelog: [v3.1.1...v3.2.0](https://github.com/Finch-API/finch-api-java/compare/v3.1.1...v3.2.0) diff --git a/README.md b/README.md index 4850869b..bd7aed71 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.tryfinch.api/finch-java)](https://central.sonatype.com/artifact/com.tryfinch.api/finch-java/3.2.0) +[![Maven Central](https://img.shields.io/maven-central/v/com.tryfinch.api/finch-java)](https://central.sonatype.com/artifact/com.tryfinch.api/finch-java/3.3.0) @@ -27,7 +27,7 @@ The REST API documentation can be foundĀ [in the Finch Documentation Center](htt ```kotlin -implementation("com.tryfinch.api:finch-java:3.2.0") +implementation("com.tryfinch.api:finch-java:3.3.0") ``` #### Maven @@ -36,7 +36,7 @@ implementation("com.tryfinch.api:finch-java:3.2.0") com.tryfinch.api finch-java - 3.2.0 + 3.3.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 61e2ae01..8134b3c5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { allprojects { group = "com.tryfinch.api" - version = "3.2.0" // x-release-please-version + version = "3.3.0" // x-release-please-version }