diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c92e0189..e857f2d8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "8.0.1" + ".": "8.1.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 431aa1d4..861514c9 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 c27123ab..57b4d8ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 8.1.0 (2026-07-01) + +Full Changelog: [v8.0.1...v8.1.0](https://github.com/Finch-API/finch-api-java/compare/v8.0.1...v8.1.0) + +### Features + +* **api:** api update ([b5360c2](https://github.com/Finch-API/finch-api-java/commit/b5360c2520a35697ce4182549cbfcfaed9fb8f1f)) + ## 8.0.1 (2026-06-25) Full Changelog: [v8.0.0...v8.0.1](https://github.com/Finch-API/finch-api-java/compare/v8.0.0...v8.0.1) diff --git a/README.md b/README.md index a0dc86e6..cf728ca3 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.tryfinch.api/finch-java)](https://central.sonatype.com/artifact/com.tryfinch.api/finch-java/8.0.1) -[![javadoc](https://javadoc.io/badge2/com.tryfinch.api/finch-java/8.0.1/javadoc.svg)](https://javadoc.io/doc/com.tryfinch.api/finch-java/8.0.1) +[![Maven Central](https://img.shields.io/maven-central/v/com.tryfinch.api/finch-java)](https://central.sonatype.com/artifact/com.tryfinch.api/finch-java/8.1.0) +[![javadoc](https://javadoc.io/badge2/com.tryfinch.api/finch-java/8.1.0/javadoc.svg)](https://javadoc.io/doc/com.tryfinch.api/finch-java/8.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/). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.tryfinch.api/finch-java/8.0.1). +The REST API documentation can be found on [developer.tryfinch.com](https://developer.tryfinch.com/). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.tryfinch.api/finch-java/8.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-java:8.0.1") +implementation("com.tryfinch.api:finch-java:8.1.0") ``` ### Maven @@ -44,7 +44,7 @@ implementation("com.tryfinch.api:finch-java:8.0.1") com.tryfinch.api finch-java - 8.0.1 + 8.1.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 9f69749f..7613d09f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.tryfinch.api" - version = "8.0.1" // x-release-please-version + version = "8.1.0" // x-release-please-version } subprojects { diff --git a/finch-java-core/src/main/kotlin/com/tryfinch/api/models/PayStatement.kt b/finch-java-core/src/main/kotlin/com/tryfinch/api/models/PayStatement.kt index 1f3c1750..38204d57 100644 --- a/finch-java-core/src/main/kotlin/com/tryfinch/api/models/PayStatement.kt +++ b/finch-java-core/src/main/kotlin/com/tryfinch/api/models/PayStatement.kt @@ -675,7 +675,7 @@ private constructor( fun hours(): Optional = hours.getOptional("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). @@ -853,7 +853,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)) /** Alias for calling [Builder.name] with `name.orElse(null)`. */