diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 928566934..9695e0ec5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "9.0.0" + ".": "9.1.0" } diff --git a/.stats.yml b/.stats.yml index 431aa1d46..861514c9d 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 48 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch/finch-ecd3f6c28edae07dbe9f54d8040a6d7f2af5ac032b20f8df06065542478e4e73.yml -openapi_spec_hash: 5e0e04e7274494062ff46ac85d358f5b +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch/finch-3cd1346947fabfca2aa9c6f821170c8d945a82667fb20a15644d5c77f8e98c10.yml +openapi_spec_hash: 642e04e90d37c0e4875d154abd06eb54 config_hash: 9ae56f40cec7304896138bfad5caf748 diff --git a/CHANGELOG.md b/CHANGELOG.md index 472a75524..8734bfbd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 9.1.0 (2026-07-01) + +Full Changelog: [v9.0.0...v9.1.0](https://github.com/Finch-API/finch-api-kotlin/compare/v9.0.0...v9.1.0) + +### Features + +* **api:** api update ([e355ad8](https://github.com/Finch-API/finch-api-kotlin/commit/e355ad86198e7aa1228080db06189778ffe2c62e)) + ## 9.0.0 (2026-06-22) Full Changelog: [v8.7.0...v9.0.0](https://github.com/Finch-API/finch-api-kotlin/compare/v8.7.0...v9.0.0) diff --git a/README.md b/README.md index a6c5aefda..4071b51cb 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.tryfinch.api/finch-kotlin)](https://central.sonatype.com/artifact/com.tryfinch.api/finch-kotlin/9.0.0) -[![javadoc](https://javadoc.io/badge2/com.tryfinch.api/finch-kotlin/9.0.0/javadoc.svg)](https://javadoc.io/doc/com.tryfinch.api/finch-kotlin/9.0.0) +[![Maven Central](https://img.shields.io/maven-central/v/com.tryfinch.api/finch-kotlin)](https://central.sonatype.com/artifact/com.tryfinch.api/finch-kotlin/9.1.0) +[![javadoc](https://javadoc.io/badge2/com.tryfinch.api/finch-kotlin/9.1.0/javadoc.svg)](https://javadoc.io/doc/com.tryfinch.api/finch-kotlin/9.1.0) @@ -24,7 +24,7 @@ Use the Finch MCP Server to enable AI assistants to interact with this API, allo -The REST API documentation can be found on [developer.tryfinch.com](https://developer.tryfinch.com/). KDocs are available on [javadoc.io](https://javadoc.io/doc/com.tryfinch.api/finch-kotlin/9.0.0). +The REST API documentation can be found on [developer.tryfinch.com](https://developer.tryfinch.com/). KDocs are available on [javadoc.io](https://javadoc.io/doc/com.tryfinch.api/finch-kotlin/9.1.0). @@ -35,7 +35,7 @@ The REST API documentation can be found on [developer.tryfinch.com](https://deve ### Gradle ```kotlin -implementation("com.tryfinch.api:finch-kotlin:9.0.0") +implementation("com.tryfinch.api:finch-kotlin:9.1.0") ``` ### Maven @@ -44,7 +44,7 @@ implementation("com.tryfinch.api:finch-kotlin:9.0.0") com.tryfinch.api finch-kotlin - 9.0.0 + 9.1.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index ba768ac8d..529882ff7 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.tryfinch.api" - version = "9.0.0" // x-release-please-version + version = "9.1.0" // x-release-please-version } subprojects { diff --git a/finch-kotlin-core/src/main/kotlin/com/tryfinch/api/models/PayStatement.kt b/finch-kotlin-core/src/main/kotlin/com/tryfinch/api/models/PayStatement.kt index db3322f96..6808d66bc 100644 --- a/finch-kotlin-core/src/main/kotlin/com/tryfinch/api/models/PayStatement.kt +++ b/finch-kotlin-core/src/main/kotlin/com/tryfinch/api/models/PayStatement.kt @@ -636,7 +636,7 @@ private constructor( fun hours(): Double? = hours.getNullable("hours") /** - * The exact name of the deduction from the pay statement. + * The exact name of the earning from the pay statement. * * @throws FinchInvalidDataException if the JSON field has an unexpected type (e.g. if the * server responded with an unexpected value). @@ -804,7 +804,7 @@ private constructor( */ fun hours(hours: JsonField) = apply { this.hours = hours } - /** The exact name of the deduction from the pay statement. */ + /** The exact name of the earning from the pay statement. */ fun name(name: String?) = name(JsonField.ofNullable(name)) /**