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 #6

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.3
configChecksum: e5a0688082597945cff153272891fd95
releaseVersion: 0.0.4
configChecksum: 0a57fe268510592538fcb9531b087c00
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.3
version: 0.0.4
additionalDependencies: []
additionalPlugins: []
artifactID: backend-api
Expand Down
6 changes: 3 additions & 3 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:f66e98409a3911164cec7ffd3e6e671f437010d92c731570689bcbc4fd5cec8c
sourceRevisionDigest: sha256:24bf8aa626312f65f39d7cd0a921dc6bb64bde3a54f20046f08b5d9449bd3aae
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:f66e98409a3911164cec7ffd3e6e671f437010d92c731570689bcbc4fd5cec8c
sourceRevisionDigest: sha256:24bf8aa626312f65f39d7cd0a921dc6bb64bde3a54f20046f08b5d9449bd3aae
sourceBlobDigest: sha256:be6a2adf86086a55368c73204dfb84b5ca2f9d8514f771aff33857624a212e56
outLocation: /github/workspace/repo
workflow:
Expand All @@ -29,7 +29,7 @@ workflow:
source: clerk-java-sdk
publish:
java:
ossrhUsername: clerk
ossrhUsername: $ossrh_username
ossrhPassword: $ossrh_password
gpgSecretKey: $gpg_secret_key
gpgPassPhrase: $gpg_pass_phrase
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.3'
implementation 'com.clerk.backend_api:api:0.0.4'
```

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

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

## 2024-06-13 23:40:18
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.307.2 (2.342.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v0.0.4] .
### Releases
- [Maven Central v0.0.4] https://central.sonatype.com/artifact/com.clerk/backend-api/0.0.4 - .
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.3"
version = "0.0.4"

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

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.3";
public String sdkVersion = "0.0.4";
public String genVersion = "2.342.2";
public String userAgent = "speakeasy-sdk/java 0.0.3 2.342.2 v1 com.clerk.backend_api";
public String userAgent = "speakeasy-sdk/java 0.0.4 2.342.2 v1 com.clerk.backend_api";

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

Expand Down