Skip to content

Commit cbd6d06

Browse files
authored
Merge pull request #3 from StackOneHQ/speakeasy-sdk-regen-1741697375
chore: 🐝 Update SDK - Generate 0.1.1
2 parents 017e453 + 6b0cd47 commit cbd6d06

File tree

7 files changed

+36
-26
lines changed

7 files changed

+36
-26
lines changed

.speakeasy/gen.lock

Lines changed: 8 additions & 8 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ generation:
1515
oAuth2ClientCredentialsEnabled: false
1616
oAuth2PasswordEnabled: false
1717
java:
18-
version: 0.1.0
18+
version: 0.1.1
1919
additionalDependencies: []
2020
additionalPlugins: []
2121
artifactID: stackone-client-java

.speakeasy/workflow.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ speakeasyVersion: 1.514.1
22
sources:
33
StackOne-OAS:
44
sourceNamespace: stackone-oas
5-
sourceRevisionDigest: sha256:937e3fdbbfa8c0a77220b51551576b61c048e2fa74fdc4fad6f61a22c4daa36c
5+
sourceRevisionDigest: sha256:1b17a783aa2aa47adacd4da554c931990469cd2f47216ddcf405af2707333011
66
sourceBlobDigest: sha256:cc8fcf37cc70b993fb95b8be5b10a070de2cce9361f7456ccf538367a4bbfad8
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1741693061
9+
- speakeasy-sdk-regen-1741697375
1010
- 1.0.0
1111
targets:
1212
stackone:
1313
source: StackOne-OAS
1414
sourceNamespace: stackone-oas
15-
sourceRevisionDigest: sha256:937e3fdbbfa8c0a77220b51551576b61c048e2fa74fdc4fad6f61a22c4daa36c
15+
sourceRevisionDigest: sha256:1b17a783aa2aa47adacd4da554c931990469cd2f47216ddcf405af2707333011
1616
sourceBlobDigest: sha256:cc8fcf37cc70b993fb95b8be5b10a070de2cce9361f7456ccf538367a4bbfad8
1717
codeSamplesNamespace: stack-one-oas-java-code-samples
18-
codeSamplesRevisionDigest: sha256:da0754b7ab1bc573885dab00ca5c39b9864d8ce219cfd4e5f50526c9c35482d8
18+
codeSamplesRevisionDigest: sha256:9a61691bd4862b2a29ce0c51cf8c80a0513b5cfe8f57fb07dc9f398293409008
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ The samples below show how a published SDK artifact is used:
4949

5050
Gradle:
5151
```groovy
52-
implementation 'com.stackone:stackone-client-java:0.1.0'
52+
implementation 'com.stackone:stackone-client-java:0.1.1'
5353
```
5454

5555
Maven:
5656
```xml
5757
<dependency>
5858
<groupId>com.stackone</groupId>
5959
<artifactId>stackone-client-java</artifactId>
60-
<version>0.1.0</version>
60+
<version>0.1.1</version>
6161
</dependency>
6262
```
6363

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,14 @@ Based on:
88
### Generated
99
- [java v0.1.0] .
1010
### Releases
11-
- [Maven Central v0.1.0] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.1.0 - .
11+
- [Maven Central v0.1.0] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.1.0 - .
12+
13+
## 2025-03-11 12:49:18
14+
### Changes
15+
Based on:
16+
- OpenAPI Doc
17+
- Speakeasy CLI 1.514.1 (2.546.3) https://github.com/speakeasy-api/speakeasy
18+
### Generated
19+
- [java v0.1.1] .
20+
### Releases
21+
- [Maven Central v0.1.1] https://central.sonatype.com/artifact/com.stackone/stackone-client-java/0.1.1 - .

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ tasks.withType(Javadoc) {
6363
}
6464

6565
group = "com.stackone"
66-
version = "0.1.0"
66+
version = "0.1.1"
6767

6868
sourcesJar {
6969
archiveBaseName = "stackone-client-java"
@@ -101,13 +101,13 @@ publishing {
101101
maven(MavenPublication) {
102102
groupId = 'com.stackone'
103103
artifactId = 'stackone-client-java'
104-
version = '0.1.0'
104+
version = '0.1.1'
105105

106106
from components.java
107107

108108
pom {
109-
name = 'My Company Java SDK'
110-
description = 'SDK enabling Java developers to easily integrate with the My Company API.'
109+
name = 'StackOne Java SDK'
110+
description = 'SDK enabling Java developers to easily integrate with the StackOne API.'
111111
url = 'https://github.com/owner/repo'
112112
scm {
113113
url = 'github.com/owner/repo'
@@ -121,14 +121,14 @@ publishing {
121121
}
122122
developers {
123123
developer {
124-
name = 'My Company'
125-
organization = 'My Company'
126-
email = 'info@mycompany.com'
124+
name = 'StackOne'
125+
organization = 'StackOne'
126+
email = 'contact@stackone.com'
127127
}
128128
}
129129
organization {
130-
name = 'My Company'
131-
url = 'www.mycompany.com'
130+
name = 'StackOne'
131+
url = 'www.stackone.com'
132132
}
133133
}
134134
}

src/main/java/com/stackone/stackone_client_java/SDKConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public String resolvedServerUrl() {
2727
public int serverIdx = 0;
2828
private static final String LANGUAGE = "java";
2929
public static final String OPENAPI_DOC_VERSION = "1.0.0";
30-
public static final String SDK_VERSION = "0.1.0";
30+
public static final String SDK_VERSION = "0.1.1";
3131
public static final String GEN_VERSION = "2.546.3";
3232
private static final String BASE_PACKAGE = "com.stackone.stackone_client_java";
3333
public static final String USER_AGENT =

0 commit comments

Comments
 (0)