Skip to content

Commit 38d7082

Browse files
Merge pull request #108 from OneBusAway/release-please--branches--main--changes--next
release: 0.1.0-alpha.52
2 parents e96997f + f891852 commit 38d7082

File tree

5 files changed

+17
-22
lines changed

5 files changed

+17
-22
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.51"
2+
".": "0.1.0-alpha.52"
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+
## 0.1.0-alpha.52 (2026-02-18)
4+
5+
Full Changelog: [v0.1.0-alpha.51...v0.1.0-alpha.52](https://github.com/OneBusAway/java-sdk/compare/v0.1.0-alpha.51...v0.1.0-alpha.52)
6+
7+
### Chores
8+
9+
* **internal:** update `TestServerExtension` comment ([5d66e53](https://github.com/OneBusAway/java-sdk/commit/5d66e53e2c70e34e939d717a688a9a85bbb3bbfd))
10+
311
## 0.1.0-alpha.51 (2026-02-07)
412

513
Full Changelog: [v0.1.0-alpha.50...v0.1.0-alpha.51](https://github.com/OneBusAway/java-sdk/compare/v0.1.0-alpha.50...v0.1.0-alpha.51)

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-java)](https://central.sonatype.com/artifact/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.51)
6-
[![javadoc](https://javadoc.io/badge2/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.51/javadoc.svg)](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.51)
5+
[![Maven Central](https://img.shields.io/maven-central/v/org.onebusaway/onebusaway-sdk-java)](https://central.sonatype.com/artifact/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.52)
6+
[![javadoc](https://javadoc.io/badge2/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.52/javadoc.svg)](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.52)
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). Javadocs are available on [javadoc.io](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.51).
18+
The REST API documentation can be found on [developer.onebusaway.org](https://developer.onebusaway.org). Javadocs are available on [javadoc.io](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.52).
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-java:0.1.0-alpha.51")
29+
implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.52")
3030
```
3131

3232
### Maven
@@ -35,7 +35,7 @@ implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.51")
3535
<dependency>
3636
<groupId>org.onebusaway</groupId>
3737
<artifactId>onebusaway-sdk-java</artifactId>
38-
<version>0.1.0-alpha.51</version>
38+
<version>0.1.0-alpha.52</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 = "org.onebusaway"
11-
version = "0.1.0-alpha.51" // x-release-please-version
11+
version = "0.1.0-alpha.52" // x-release-please-version
1212
}
1313

1414
subprojects {

onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/TestServerExtension.kt

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,12 @@ class TestServerExtension : BeforeAllCallback, ExecutionCondition {
1515
} catch (e: Exception) {
1616
throw RuntimeException(
1717
"""
18-
The test suite will not run without a mock Prism server running against your OpenAPI spec.
18+
The test suite will not run without a mock server running against your OpenAPI spec.
1919
2020
You can set the environment variable `SKIP_MOCK_TESTS` to `true` to skip running any tests
2121
that require the mock server.
2222
23-
To fix:
24-
25-
1. Install Prism (requires Node 16+):
26-
27-
With npm:
28-
$ npm install -g @stoplight/prism-cli
29-
30-
With yarn:
31-
$ yarn global add @stoplight/prism-cli
32-
33-
2. Run the mock server
34-
35-
To run the server, pass in the path of your OpenAPI spec to the prism command:
36-
$ prism mock path/to/your.openapi.yml
23+
To fix run `./scripts/mock` in a separate terminal.
3724
"""
3825
.trimIndent(),
3926
e,

0 commit comments

Comments
 (0)