Skip to content

Commit 9d3b14e

Browse files
Merge pull request #315 from OneBusAway/release-please--branches--main--changes--next
release: 0.1.0-alpha.74
2 parents 1c65ca5 + 8a9419c commit 9d3b14e

File tree

6 files changed

+25
-11
lines changed

6 files changed

+25
-11
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-
".": "0.1.0-alpha.73"
2+
".": "0.1.0-alpha.74"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.74 (2025-06-27)
4+
5+
Full Changelog: [v0.1.0-alpha.73...v0.1.0-alpha.74](https://github.com/OneBusAway/kotlin-sdk/compare/v0.1.0-alpha.73...v0.1.0-alpha.74)
6+
7+
### Bug Fixes
8+
9+
* **ci:** release-doctor — report correct token name ([490c529](https://github.com/OneBusAway/kotlin-sdk/commit/490c5296c64401d6c15b42c9937e867af83e22ab))
10+
* **client:** bump max requests per host to max requests (5 -> 64) ([06f036e](https://github.com/OneBusAway/kotlin-sdk/commit/06f036e59faaff24d99e7464726c505cd4079975))
11+
312
## 0.1.0-alpha.73 (2025-06-17)
413

514
Full Changelog: [v0.1.0-alpha.72...v0.1.0-alpha.73](https://github.com/OneBusAway/kotlin-sdk/compare/v0.1.0-alpha.72...v0.1.0-alpha.73)

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/org.onebusaway/onebusaway-sdk-kotlin)](https://central.sonatype.com/artifact/org.onebusaway/onebusaway-sdk-kotlin/0.1.0-alpha.73)
6-
[![javadoc](https://javadoc.io/badge2/org.onebusaway/onebusaway-sdk-kotlin/0.1.0-alpha.73/javadoc.svg)](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-kotlin/0.1.0-alpha.73)
5+
[![Maven Central](https://img.shields.io/maven-central/v/org.onebusaway/onebusaway-sdk-kotlin)](https://central.sonatype.com/artifact/org.onebusaway/onebusaway-sdk-kotlin/0.1.0-alpha.74)
6+
[![javadoc](https://javadoc.io/badge2/org.onebusaway/onebusaway-sdk-kotlin/0.1.0-alpha.74/javadoc.svg)](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-kotlin/0.1.0-alpha.74)
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.onebusaway.org](https://developer.onebusaway.org). KDocs are available on [javadoc.io](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-kotlin/0.1.0-alpha.73).
18+
The REST API documentation can be found on [developer.onebusaway.org](https://developer.onebusaway.org). KDocs are available on [javadoc.io](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-kotlin/0.1.0-alpha.74).
1919

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

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

2828
```kotlin
29-
implementation("org.onebusaway:onebusaway-sdk-kotlin:0.1.0-alpha.73")
29+
implementation("org.onebusaway:onebusaway-sdk-kotlin:0.1.0-alpha.74")
3030
```
3131

3232
### Maven
@@ -35,7 +35,7 @@ implementation("org.onebusaway:onebusaway-sdk-kotlin:0.1.0-alpha.73")
3535
<dependency>
3636
<groupId>org.onebusaway</groupId>
3737
<artifactId>onebusaway-sdk-kotlin</artifactId>
38-
<version>0.1.0-alpha.73</version>
38+
<version>0.1.0-alpha.74</version>
3939
</dependency>
4040
```
4141

bin/check-release-environment

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
errors=()
44

55
if [ -z "${SONATYPE_USERNAME}" ]; then
6-
errors+=("The ONEBUSAWAY_SDK_SONATYPE_USERNAME secret has not been set. Please set it in either this repository's secrets or your organization secrets")
6+
errors+=("The SONATYPE_USERNAME secret has not been set. Please set it in either this repository's secrets or your organization secrets")
77
fi
88

99
if [ -z "${SONATYPE_PASSWORD}" ]; then
10-
errors+=("The ONEBUSAWAY_SDK_SONATYPE_PASSWORD secret has not been set. Please set it in either this repository's secrets or your organization secrets")
10+
errors+=("The SONATYPE_PASSWORD secret has not been set. Please set it in either this repository's secrets or your organization secrets")
1111
fi
1212

1313
if [ -z "${GPG_SIGNING_KEY}" ]; then
14-
errors+=("The ONEBUSAWAY_SDK_SONATYPE_GPG_SIGNING_KEY secret has not been set. Please set it in either this repository's secrets or your organization secrets")
14+
errors+=("The GPG_SIGNING_KEY secret has not been set. Please set it in either this repository's secrets or your organization secrets")
1515
fi
1616

1717
if [ -z "${GPG_SIGNING_PASSWORD}" ]; then
18-
errors+=("The ONEBUSAWAY_SDK_SONATYPE_GPG_SIGNING_PASSWORD secret has not been set. Please set it in either this repository's secrets or your organization secrets")
18+
errors+=("The GPG_SIGNING_PASSWORD secret has not been set. Please set it in either this repository's secrets or your organization secrets")
1919
fi
2020

2121
lenErrors=${#errors[@]}

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 = "org.onebusaway"
11-
version = "0.1.0-alpha.73" // x-release-please-version
11+
version = "0.1.0-alpha.74" // x-release-please-version
1212
}
1313

1414
subprojects {

onebusaway-sdk-kotlin-client-okhttp/src/main/kotlin/org/onebusaway/client/okhttp/OkHttpClient.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,11 @@ class OkHttpClient private constructor(private val okHttpClient: okhttp3.OkHttpC
211211
.callTimeout(timeout.request())
212212
.proxy(proxy)
213213
.build()
214+
.apply {
215+
// We usually make all our requests to the same host so it makes sense to
216+
// raise the per-host limit to the overall limit.
217+
dispatcher.maxRequestsPerHost = dispatcher.maxRequests
218+
}
214219
)
215220
}
216221
}

0 commit comments

Comments
 (0)