diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index a9e9222..21a705e 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.1.0-alpha.47"
+ ".": "0.1.0-alpha.48"
}
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4c65983..2764806 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,18 @@
# Changelog
+## 0.1.0-alpha.48 (2026-01-22)
+
+Full Changelog: [v0.1.0-alpha.47...v0.1.0-alpha.48](https://github.com/OneBusAway/java-sdk/compare/v0.1.0-alpha.47...v0.1.0-alpha.48)
+
+### Features
+
+* **client:** send `X-Stainless-Kotlin-Version` header ([acd3860](https://github.com/OneBusAway/java-sdk/commit/acd3860b3b99dffd71f1e9a8f2e554f0b984aaca))
+
+
+### Chores
+
+* **internal:** update maven repo doc to include authentication ([647f6b5](https://github.com/OneBusAway/java-sdk/commit/647f6b54a992e0e9f131420c3c7ca9168a85b33b))
+
## 0.1.0-alpha.47 (2026-01-17)
Full Changelog: [v0.1.0-alpha.46...v0.1.0-alpha.47](https://github.com/OneBusAway/java-sdk/compare/v0.1.0-alpha.46...v0.1.0-alpha.47)
diff --git a/README.md b/README.md
index 37244a8..97849e0 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,8 @@
-[](https://central.sonatype.com/artifact/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.47)
-[](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.47)
+[](https://central.sonatype.com/artifact/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.48)
+[](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.48)
@@ -15,7 +15,7 @@ It is generated with [Stainless](https://www.stainless.com/).
-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.47).
+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.48).
@@ -26,7 +26,7 @@ The REST API documentation can be found on [developer.onebusaway.org](https://de
### Gradle
```kotlin
-implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.47")
+implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.48")
```
### Maven
@@ -35,7 +35,7 @@ implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.47")
This is the Maven repository for your Stainless Java SDK build.
-To use the uploaded Maven repository, add the following to your project's pom.xml:
The details depend on whether you're using Maven or Gradle as your build tool.
+ +Add the following to your project's pom.xml:
<repositories>
+ <repository>
+ <id>stainless-sdk-repo</id>
+ <url>https://pkg.stainless.com/s/${PROJECT}/${SHA}/mvn</url>
+ </repository>
+</repositories>
+
+ Add the following to your build.gradle file:
repositories {
+ maven {
+ url "https://pkg.stainless.com/s/${PROJECT}/${SHA}/mvn"
+ }
+}
+
+ Some accounts may require authentication to access the repository. If so, use the
+ following instructions, replacing YOUR_STAINLESS_API_TOKEN with your actual token.
First, ensure you have the following in your Maven settings.xml for repo authentication:
<servers> + <server> + <id>stainless-sdk-repo</id> + <configuration> + <httpHeaders> + <property> + <name>Authorization</name> + <value>Bearer YOUR_STAINLESS_API_TOKEN</value> + </property> + </httpHeaders> + </configuration> + </server> +</servers>+ +
Then, add the following to your project's pom.xml:
<repositories>
<repository>
<id>stainless-sdk-repo</id>
@@ -105,14 +149,24 @@ generate_instructions() {
</repository>
</repositories>
- If you're using Gradle, add the following to your build.gradle file:
Add the following to your build.gradle file:
repositories {
maven {
- url 'https://pkg.stainless.com/s/${PROJECT}/${SHA}/mvn'
+ url "https://pkg.stainless.com/s/${PROJECT}/${SHA}/mvn"
+ credentials(HttpHeaderCredentials) {
+ name = "Authorization"
+ value = "Bearer YOUR_STAINLESS_API_TOKEN"
+ }
+ authentication {
+ header(HttpHeaderAuthentication)
+ }
}
}
+ Once you've added the repository, you can include dependencies from it as usual. See your +
Once you've configured the repository, you can include dependencies from it as usual. See your project README for more details.