Skip to content

Commit a10ec0d

Browse files
release: 3.2.0
1 parent 26f5dbb commit a10ec0d

File tree

4 files changed

+33
-5
lines changed

4 files changed

+33
-5
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-
".": "3.1.1"
2+
".": "3.2.0"
33
}

CHANGELOG.md

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

3+
## 3.2.0 (2025-01-08)
4+
5+
Full Changelog: [v3.1.1...v3.2.0](https://github.com/Finch-API/finch-api-java/compare/v3.1.1...v3.2.0)
6+
7+
### Features
8+
9+
* **client:** add various convenience setters to models ([#387](https://github.com/Finch-API/finch-api-java/issues/387)) ([051f37d](https://github.com/Finch-API/finch-api-java/commit/051f37d5ce901f5a05797d50dad3fc177a893012))
10+
* **client:** allow setting arbitrary JSON for top-level body params ([051f37d](https://github.com/Finch-API/finch-api-java/commit/051f37d5ce901f5a05797d50dad3fc177a893012))
11+
* **client:** expose getters for `JsonField` of body params ([051f37d](https://github.com/Finch-API/finch-api-java/commit/051f37d5ce901f5a05797d50dad3fc177a893012))
12+
13+
14+
### Bug Fixes
15+
16+
* **client:** consistently throw on omitting required fields ([051f37d](https://github.com/Finch-API/finch-api-java/commit/051f37d5ce901f5a05797d50dad3fc177a893012))
17+
* **client:** convert `JsonField` containing list type to mutable in builder ([051f37d](https://github.com/Finch-API/finch-api-java/commit/051f37d5ce901f5a05797d50dad3fc177a893012))
18+
19+
20+
### Chores
21+
22+
* **internal:** codegen related update ([#389](https://github.com/Finch-API/finch-api-java/issues/389)) ([75e1dfd](https://github.com/Finch-API/finch-api-java/commit/75e1dfd7cb81654e68221e8426d8d4d27ce8b6e6))
23+
24+
25+
### Styles
26+
27+
* **internal:** explicitly add some method return types ([051f37d](https://github.com/Finch-API/finch-api-java/commit/051f37d5ce901f5a05797d50dad3fc177a893012))
28+
* **internal:** move headers and query params setters below others ([051f37d](https://github.com/Finch-API/finch-api-java/commit/051f37d5ce901f5a05797d50dad3fc177a893012))
29+
* **internal:** simplify existing convenience setters on params ([051f37d](https://github.com/Finch-API/finch-api-java/commit/051f37d5ce901f5a05797d50dad3fc177a893012))
30+
331
## 3.1.1 (2025-01-07)
432

533
Full Changelog: [v3.1.0...v3.1.1](https://github.com/Finch-API/finch-api-java/compare/v3.1.0...v3.1.1)

README.md

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

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

5-
[![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.1.1)
5+
[![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)
66

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

@@ -27,7 +27,7 @@ The REST API documentation can be found [in the Finch Documentation Center](htt
2727
<!-- x-release-please-start-version -->
2828

2929
```kotlin
30-
implementation("com.tryfinch.api:finch-java:3.1.1")
30+
implementation("com.tryfinch.api:finch-java:3.2.0")
3131
```
3232

3333
#### Maven
@@ -36,7 +36,7 @@ implementation("com.tryfinch.api:finch-java:3.1.1")
3636
<dependency>
3737
<groupId>com.tryfinch.api</groupId>
3838
<artifactId>finch-java</artifactId>
39-
<version>3.1.1</version>
39+
<version>3.2.0</version>
4040
</dependency>
4141
```
4242

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
allprojects {
66
group = "com.tryfinch.api"
7-
version = "3.1.1" // x-release-please-version
7+
version = "3.2.0" // x-release-please-version
88
}
99

1010

0 commit comments

Comments
 (0)