Skip to content
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: 1.0.0
speakeasyVersion: 1.335.2
generationVersion: 2.372.3
releaseVersion: 1.5.0
configChecksum: ab72ffd6e84b0f36b5d464a90a3d1702
releaseVersion: 1.5.1
configChecksum: 53ab2446c5b60024a10bb79d807fbbbe
repoURL: https://github.com/airbytehq/airbyte-api-java-sdk.git
repoSubDirectory: .
published: true
Expand Down
9 changes: 4 additions & 5 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ speakeasyVersion: 1.335.2
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:7d13fcede86a3ca09b4d289f1bc31301fa7a3501406dccbe8913eead593008e0
sourceBlobDigest: sha256:f1b3779c701a2b6ce17695afd26a74bc95f97c24cb73dcd26a0feff21f0c1845
sourceRevisionDigest: sha256:a2965c114e340987d05556f130c3fb312758c4dc617d12e9c36d239ae5de2c90
sourceBlobDigest: sha256:c9abc14c5c90dc3d935bd884db2c2b795e1eb8631f6d9fa3526135c1aa6ffd63
tags:
- latest
- main
targets:
airbyte-api:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:7d13fcede86a3ca09b4d289f1bc31301fa7a3501406dccbe8913eead593008e0
sourceBlobDigest: sha256:f1b3779c701a2b6ce17695afd26a74bc95f97c24cb73dcd26a0feff21f0c1845
sourceRevisionDigest: sha256:a2965c114e340987d05556f130c3fb312758c4dc617d12e9c36d239ae5de2c90
sourceBlobDigest: sha256:c9abc14c5c90dc3d935bd884db2c2b795e1eb8631f6d9fa3526135c1aa6ffd63
outLocation: /github/workspace/repo
workflow:
workflowVersion: 1.0.0
Expand All @@ -33,4 +33,3 @@ workflow:
ossrhPassword: $OSSRH_PASSWORD
gpgSecretKey: $JAVA_GPG_SECRET_KEY
gpgPassPhrase: $JAVA_GPG_PASSPHRASE
useSonatypeLegacy: true
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ The samples below show how a published SDK artifact is used:

Gradle:
```groovy
implementation 'com.airbyte:api:1.5.0'
implementation 'com.airbyte:api:1.5.1'
```

Maven:
```xml
<dependency>
<groupId>com.airbyte</groupId>
<artifactId>api</artifactId>
<version>1.5.0</version>
<version>1.5.1</version>
</dependency>
```

Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -1081,4 +1081,14 @@ Based on:
### Generated
- [java v1.5.0] .
### Releases
- [Maven Central v1.5.0] https://central.sonatype.com/artifact/com.airbyte/api/1.5.0 - .
- [Maven Central v1.5.0] https://central.sonatype.com/artifact/com.airbyte/api/1.5.0 - .

## 2024-07-16 02:11:42
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.335.2 (2.372.3) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v1.5.1] .
### Releases
- [Maven Central v1.5.1] https://central.sonatype.com/artifact/com.airbyte/api/1.5.1 - .
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ publishing {
maven(MavenPublication) {
groupId = 'com.airbyte'
artifactId = 'api'
version = '1.5.0'
version = '1.5.1'

from components.java

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/airbyte/api/SDKConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ public Optional<SecuritySource> securitySource() {
public int serverIdx = 0;
public String language = "java";
public String openapiDocVersion = "1.0.0";
public String sdkVersion = "1.5.0";
public String sdkVersion = "1.5.1";
public String genVersion = "2.372.3";
public String userAgent = "speakeasy-sdk/java 1.5.0 2.372.3 1.0.0 com.airbyte.api";
public String userAgent = "speakeasy-sdk/java 1.5.1 2.372.3 1.0.0 com.airbyte.api";

private com.airbyte.api.utils.Hooks _hooks = createHooks();

Expand Down