File tree Expand file tree Collapse file tree 6 files changed +20
-8
lines changed
Expand file tree Collapse file tree 6 files changed +20
-8
lines changed Original file line number Diff line number Diff line change 3333 export -- GPG_SIGNING_KEY_ID
3434 printenv -- GPG_SIGNING_KEY | gpg --batch --passphrase-fd 3 --import 3<<< "$GPG_SIGNING_PASSWORD"
3535 GPG_SIGNING_KEY_ID="$(gpg --with-colons --list-keys | awk -F : -- '/^pub:/ { getline; print "0x" substr($10, length($10) - 7) }')"
36- ./gradlew publishAndReleaseToMavenCentral --stacktrace -PmavenCentralUsername="$SONATYPE_USERNAME" -PmavenCentralPassword="$SONATYPE_PASSWORD" --no-configuration-cache
36+ ./gradlew publishAndReleaseToMavenCentral -Dorg.gradle.jvmargs="-Xmx8g" - -stacktrace -PmavenCentralUsername="$SONATYPE_USERNAME" -PmavenCentralPassword="$SONATYPE_PASSWORD" --no-configuration-cache
3737 env :
3838 SONATYPE_USERNAME : ${{ secrets.FINCH_SONATYPE_USERNAME || secrets.SONATYPE_USERNAME }}
3939 SONATYPE_PASSWORD : ${{ secrets.FINCH_SONATYPE_PASSWORD || secrets.SONATYPE_PASSWORD }}
Original file line number Diff line number Diff line change 11{
2- "." : " 7.3.0 "
2+ "." : " 7.3.1 "
33}
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 7.3.1 (2025-07-08)
4+
5+ Full Changelog: [ v7.3.0...v7.3.1] ( https://github.com/Finch-API/finch-api-java/compare/v7.3.0...v7.3.1 )
6+
7+ ### Chores
8+
9+ * ** ci:** ensure docs generation always succeeds ([ 0da4805] ( https://github.com/Finch-API/finch-api-java/commit/0da480548ffd12fdff25f9174958098cafe17d67 ) )
10+
311## 7.3.0 (2025-07-02)
412
513Full Changelog: [ v7.2.0...v7.3.0] ( https://github.com/Finch-API/finch-api-java/compare/v7.2.0...v7.3.0 )
Original file line number Diff line number Diff line change 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/7.3.0 )
6- [ ![ javadoc] ( https://javadoc.io/badge2/com.tryfinch.api/finch-java/7.3.0 /javadoc.svg )] ( https://javadoc.io/doc/com.tryfinch.api/finch-java/7.3.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/7.3.1 )
6+ [ ![ javadoc] ( https://javadoc.io/badge2/com.tryfinch.api/finch-java/7.3.1 /javadoc.svg )] ( https://javadoc.io/doc/com.tryfinch.api/finch-java/7.3.1 )
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/ ) . Javadocs are available on [ javadoc.io] ( https://javadoc.io/doc/com.tryfinch.api/finch-java/7.3.0 ) .
18+ 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/7.3.1 ) .
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-java:7.3.0 " )
29+ implementation(" com.tryfinch.api:finch-java:7.3.1 " )
3030```
3131
3232### Maven
@@ -35,7 +35,7 @@ implementation("com.tryfinch.api:finch-java:7.3.0")
3535<dependency >
3636 <groupId >com.tryfinch.api</groupId >
3737 <artifactId >finch-java</artifactId >
38- <version >7.3.0 </version >
38+ <version >7.3.1 </version >
3939</dependency >
4040```
4141
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ repositories {
88
99allprojects {
1010 group = " com.tryfinch.api"
11- version = " 7.3.0 " // x-release-please-version
11+ version = " 7.3.1 " // x-release-please-version
1212}
1313
1414subprojects {
Original file line number Diff line number Diff line change @@ -53,3 +53,7 @@ configure<MavenPublishBaseExtension> {
5353 }
5454 }
5555}
56+
57+ tasks.withType<Zip >().configureEach {
58+ isZip64 = true
59+ }
You can’t perform that action at this time.
0 commit comments