Skip to content

Commit 2ee39b8

Browse files
release: 4.2.0
1 parent 4698263 commit 2ee39b8

File tree

4 files changed

+29
-5
lines changed

4 files changed

+29
-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-
".": "4.1.0"
2+
".": "4.2.0"
33
}

CHANGELOG.md

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

3+
## 4.2.0 (2025-02-27)
4+
5+
Full Changelog: [v4.1.0...v4.2.0](https://github.com/Finch-API/finch-api-java/compare/v4.1.0...v4.2.0)
6+
7+
### Features
8+
9+
* **client:** allow omitting params object when none required ([#455](https://github.com/Finch-API/finch-api-java/issues/455)) ([cac8229](https://github.com/Finch-API/finch-api-java/commit/cac82298a09597acfa12046c8d6396aa08bb3807))
10+
11+
12+
### Bug Fixes
13+
14+
* **client:** add missing `@JvmStatic` ([#457](https://github.com/Finch-API/finch-api-java/issues/457)) ([258a817](https://github.com/Finch-API/finch-api-java/commit/258a817f842e9344c107586f1ac7c879f6c1e3ae))
15+
16+
17+
### Chores
18+
19+
* **internal:** add async service tests ([#458](https://github.com/Finch-API/finch-api-java/issues/458)) ([4698263](https://github.com/Finch-API/finch-api-java/commit/4698263f9490cc4df1b8412c084c1ade14c38b68))
20+
* **internal:** improve sync service tests ([4698263](https://github.com/Finch-API/finch-api-java/commit/4698263f9490cc4df1b8412c084c1ade14c38b68))
21+
22+
23+
### Documentation
24+
25+
* readme parameter tweaks ([4698263](https://github.com/Finch-API/finch-api-java/commit/4698263f9490cc4df1b8412c084c1ade14c38b68))
26+
327
## 4.1.0 (2025-02-25)
428

529
Full Changelog: [v4.0.2...v4.1.0](https://github.com/Finch-API/finch-api-java/compare/v4.0.2...v4.1.0)

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/4.1.0)
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/4.2.0)
66

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

@@ -23,7 +23,7 @@ The REST API documentation can be found [in the Finch Documentation Center](htt
2323
### Gradle
2424

2525
```kotlin
26-
implementation("com.tryfinch.api:finch-java:4.1.0")
26+
implementation("com.tryfinch.api:finch-java:4.2.0")
2727
```
2828

2929
### Maven
@@ -32,7 +32,7 @@ implementation("com.tryfinch.api:finch-java:4.1.0")
3232
<dependency>
3333
<groupId>com.tryfinch.api</groupId>
3434
<artifactId>finch-java</artifactId>
35-
<version>4.1.0</version>
35+
<version>4.2.0</version>
3636
</dependency>
3737
```
3838

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
allprojects {
22
group = "com.tryfinch.api"
3-
version = "4.1.0" // x-release-please-version
3+
version = "4.2.0" // x-release-please-version
44
}

0 commit comments

Comments
 (0)