Skip to content

Commit 039158f

Browse files
release: 8.1.2 (#476)
* refactor(internal): minor `ClientOptionsTest` change * release: 8.1.2 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 0610a20 commit 039158f

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "8.1.1"
2+
".": "8.1.2"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 8.1.2 (2025-06-30)
4+
5+
Full Changelog: [v8.1.1...v8.1.2](https://github.com/Finch-API/finch-api-kotlin/compare/v8.1.1...v8.1.2)
6+
7+
### Refactors
8+
9+
* **internal:** minor `ClientOptionsTest` change ([7f3b439](https://github.com/Finch-API/finch-api-kotlin/commit/7f3b4396bb59bfb9f0c9e892f066fb35ac0b7aa4))
10+
311
## 8.1.1 (2025-06-29)
412

513
Full Changelog: [v8.1.0...v8.1.1](https://github.com/Finch-API/finch-api-kotlin/compare/v8.1.0...v8.1.1)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
<!-- x-release-please-start-version -->
44

5-
[![Maven Central](https://img.shields.io/maven-central/v/com.tryfinch.api/finch-kotlin)](https://central.sonatype.com/artifact/com.tryfinch.api/finch-kotlin/8.1.1)
6-
[![javadoc](https://javadoc.io/badge2/com.tryfinch.api/finch-kotlin/8.1.1/javadoc.svg)](https://javadoc.io/doc/com.tryfinch.api/finch-kotlin/8.1.1)
5+
[![Maven Central](https://img.shields.io/maven-central/v/com.tryfinch.api/finch-kotlin)](https://central.sonatype.com/artifact/com.tryfinch.api/finch-kotlin/8.1.2)
6+
[![javadoc](https://javadoc.io/badge2/com.tryfinch.api/finch-kotlin/8.1.2/javadoc.svg)](https://javadoc.io/doc/com.tryfinch.api/finch-kotlin/8.1.2)
77

88
<!-- x-release-please-end -->
99

@@ -15,7 +15,7 @@ It is generated with [Stainless](https://www.stainless.com/).
1515

1616
<!-- x-release-please-start-version -->
1717

18-
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/8.1.1).
18+
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/8.1.2).
1919

2020
<!-- x-release-please-end -->
2121

@@ -26,7 +26,7 @@ The REST API documentation can be found on [developer.tryfinch.com](https://deve
2626
### Gradle
2727

2828
```kotlin
29-
implementation("com.tryfinch.api:finch-kotlin:8.1.1")
29+
implementation("com.tryfinch.api:finch-kotlin:8.1.2")
3030
```
3131

3232
### Maven
@@ -35,7 +35,7 @@ implementation("com.tryfinch.api:finch-kotlin:8.1.1")
3535
<dependency>
3636
<groupId>com.tryfinch.api</groupId>
3737
<artifactId>finch-kotlin</artifactId>
38-
<version>8.1.1</version>
38+
<version>8.1.2</version>
3939
</dependency>
4040
```
4141

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
allprojects {
1010
group = "com.tryfinch.api"
11-
version = "8.1.1" // x-release-please-version
11+
version = "8.1.2" // x-release-please-version
1212
}
1313

1414
subprojects {

finch-kotlin-core/src/test/kotlin/com/tryfinch/api/core/ClientOptionsTest.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ import org.mockito.kotlin.verify
1414
@ExtendWith(MockitoExtension::class)
1515
internal class ClientOptionsTest {
1616

17+
private val httpClient = mock<HttpClient>()
18+
1719
@Test
1820
fun toBuilder_whenOriginalClientOptionsGarbageCollected_doesNotCloseOriginalClient() {
19-
val httpClient = mock<HttpClient>()
2021
var clientOptions =
2122
ClientOptions.builder().httpClient(httpClient).accessToken("My Access Token").build()
2223
verify(httpClient, never()).close()

0 commit comments

Comments
 (0)