Skip to content

Commit

Permalink
Merge pull request #59 from hathora/speakeasy-sdk-regen-1729097140
Browse files Browse the repository at this point in the history
chore: 🐝 Update SDK - Generate 2.10.3
  • Loading branch information
gwprice115 authored Oct 16, 2024
2 parents 76bfcad + 11133e1 commit 27b78f9
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 13 deletions.
9 changes: 6 additions & 3 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ id: 7b361cb9-7960-4aa9-aefb-1d3ff2bbe54b
management:
docChecksum: fa904454ed510a65df81ad72c427e3c0
docVersion: 0.0.1
speakeasyVersion: 1.418.2
speakeasyVersion: 1.418.4
generationVersion: 2.438.3
releaseVersion: 2.10.2
configChecksum: 5e093a9e0e07b545b923e876ca2f8b9c
releaseVersion: 2.10.3
configChecksum: 8282f59035a6833dff966be8c041b513
repoURL: https://github.com/hathora/cloud-sdk-java.git
repoSubDirectory: .
published: true
Expand Down Expand Up @@ -2148,6 +2148,7 @@ examples:
responses:
"404":
application/json: {"message": "<value>"}
"200": {}
GetMetricsDeprecated:
speakeasy-default-get-metrics-deprecated:
parameters:
Expand All @@ -2158,6 +2159,7 @@ examples:
responses:
"401":
application/json: {"message": "<value>"}
"200": {}
GetProcessMetrics:
speakeasy-default-get-process-metrics:
parameters:
Expand All @@ -2168,3 +2170,4 @@ examples:
responses:
"401":
application/json: {"message": "<value>"}
"200": {}
6 changes: 3 additions & 3 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
speakeasyVersion: 1.418.2
speakeasyVersion: 1.418.4
sources:
java-source:
sourceNamespace: java-source
sourceRevisionDigest: sha256:1ebc976efa6a7bba3ba32d42c2344eedce0a2a71df8434a59f3a10342386e5da
sourceRevisionDigest: sha256:161f6e7b2ffde6a5545686e86ff695adaf381744860f17301910a9865f0afc8e
sourceBlobDigest: sha256:6cfbc7a083687d34b73b414094de5fdfbbc82c68369795dc78804246b7eeff08
tags:
- latest
Expand All @@ -11,7 +11,7 @@ targets:
hathora-java:
source: java-source
sourceNamespace: java-source
sourceRevisionDigest: sha256:1ebc976efa6a7bba3ba32d42c2344eedce0a2a71df8434a59f3a10342386e5da
sourceRevisionDigest: sha256:161f6e7b2ffde6a5545686e86ff695adaf381744860f17301910a9865f0afc8e
sourceBlobDigest: sha256:6cfbc7a083687d34b73b414094de5fdfbbc82c68369795dc78804246b7eeff08
workflow:
workflowVersion: 1.0.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ The samples below show how a published SDK artifact is used:

Gradle:
```groovy
implementation 'dev.hathora:cloud-sdk:2.10.2'
implementation 'dev.hathora:cloud-sdk:2.10.3'
```

Maven:
```xml
<dependency>
<groupId>dev.hathora</groupId>
<artifactId>cloud-sdk</artifactId>
<version>2.10.2</version>
<version>2.10.3</version>
</dependency>
```

Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -719,4 +719,14 @@ Based on:
### Generated
- [java v2.10.2] .
### Releases
- [Maven Central v2.10.2] https://central.sonatype.com/artifact/dev.hathora/cloud-sdk/2.10.2 - .
- [Maven Central v2.10.2] https://central.sonatype.com/artifact/dev.hathora/cloud-sdk/2.10.2 - .

## 2024-10-16 16:45:34
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.418.4 (2.438.3) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v2.10.3] .
### Releases
- [Maven Central v2.10.3] https://central.sonatype.com/artifact/dev.hathora/cloud-sdk/2.10.3 - .
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ tasks.withType(Javadoc) {
}

group = "dev.hathora"
version = "2.10.2"
version = "2.10.3"

sourcesJar {
archiveBaseName = "cloud-sdk"
Expand Down Expand Up @@ -101,7 +101,7 @@ publishing {
maven(MavenPublication) {
groupId = 'dev.hathora'
artifactId = 'cloud-sdk'
version = '2.10.2'
version = '2.10.3'

from components.java

Expand Down
2 changes: 1 addition & 1 deletion gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ generation:
baseServerURL: ""
flattenGlobalSecurity: true
java:
version: 2.10.2
version: 2.10.3
additionalDependencies:
- testImplementation:org.junit.jupiter:junit-jupiter-api:5.8.1
- testRuntimeOnly:org.junit.jupiter:junit-jupiter-engine:5.8.1
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/dev/hathora/cloud_sdk/SDKConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public Optional<SecuritySource> securitySource() {
public int serverIdx = 0;
private static final String LANGUAGE = "java";
public static final String OPENAPI_DOC_VERSION = "0.0.1";
public static final String SDK_VERSION = "2.10.2";
public static final String SDK_VERSION = "2.10.3";
public static final String GEN_VERSION = "2.438.3";
private static final String BASE_PACKAGE = "dev.hathora.cloud_sdk";
public static final String USER_AGENT =
Expand Down

0 comments on commit 27b78f9

Please sign in to comment.