Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: 🐝 Update SDK - Generate #7

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ management:
docVersion: v1
speakeasyVersion: 1.307.2
generationVersion: 2.342.2
releaseVersion: 0.0.4
configChecksum: 0a57fe268510592538fcb9531b087c00
releaseVersion: 0.0.5
configChecksum: 1106f4ac0894869f99a1878c6247299d
repoURL: https://github.com/clerk/clerk-sdk-java.git
published: true
features:
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: true
java:
version: 0.0.4
version: 0.0.5
additionalDependencies: []
additionalPlugins: []
artifactID: backend-api
Expand Down
4 changes: 2 additions & 2 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ speakeasyVersion: 1.307.2
sources:
clerk-java-sdk:
sourceNamespace: clerk-java-sdk
sourceRevisionDigest: sha256:24bf8aa626312f65f39d7cd0a921dc6bb64bde3a54f20046f08b5d9449bd3aae
sourceRevisionDigest: sha256:f0252d7987c351526256cbdb6d0a862a7561a5d19302a41f749bb83bcac68bd6
sourceBlobDigest: sha256:be6a2adf86086a55368c73204dfb84b5ca2f9d8514f771aff33857624a212e56
tags:
- latest
Expand All @@ -11,7 +11,7 @@ targets:
my-first-target:
source: clerk-java-sdk
sourceNamespace: clerk-java-sdk
sourceRevisionDigest: sha256:24bf8aa626312f65f39d7cd0a921dc6bb64bde3a54f20046f08b5d9449bd3aae
sourceRevisionDigest: sha256:f0252d7987c351526256cbdb6d0a862a7561a5d19302a41f749bb83bcac68bd6
sourceBlobDigest: sha256:be6a2adf86086a55368c73204dfb84b5ca2f9d8514f771aff33857624a212e56
outLocation: /github/workspace/repo
workflow:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ The samples below show how a published SDK artifact is used:

Gradle:
```groovy
implementation 'com.clerk.backend_api:api:0.0.4'
implementation 'com.clerk.backend_api:api:0.0.5'
```

Maven:
```xml
<dependency>
<groupId>com.clerk.backend_api</groupId>
<artifactId>api</artifactId>
<version>0.0.4</version>
<version>0.0.5</version>
</dependency>
```

Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,14 @@ Based on:
### Generated
- [java v0.0.4] .
### Releases
- [Maven Central v0.0.4] https://central.sonatype.com/artifact/com.clerk/backend-api/0.0.4 - .
- [Maven Central v0.0.4] https://central.sonatype.com/artifact/com.clerk/backend-api/0.0.4 - .

## 2024-06-13 23:54:19
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.307.2 (2.342.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v0.0.5] .
### Releases
- [Maven Central v0.0.5] https://central.sonatype.com/artifact/com.clerk/backend-api/0.0.5 - .
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
group = "com.clerk"
version = "0.0.4"
version = "0.0.5"

sourcesJar {
archiveBaseName = "backend-api"
Expand Down Expand Up @@ -98,7 +98,7 @@ publishing {
maven(MavenPublication) {
groupId = 'com.clerk'
artifactId = 'backend-api'
version = '0.0.4'
version = '0.0.5'

from components.java

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/clerk/backend_api/SDKConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ public Optional<SecuritySource> securitySource() {
public int serverIdx = 0;
public String language = "java";
public String openapiDocVersion = "v1";
public String sdkVersion = "0.0.4";
public String sdkVersion = "0.0.5";
public String genVersion = "2.342.2";
public String userAgent = "speakeasy-sdk/java 0.0.4 2.342.2 v1 com.clerk.backend_api";
public String userAgent = "speakeasy-sdk/java 0.0.5 2.342.2 v1 com.clerk.backend_api";

private com.clerk.backend_api.utils.Hooks _hooks = createHooks();

Expand Down