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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The Developer Portal UI can also be used to help build your integration by showi
### Gradle

```groovy
implementation 'com.airbyte.api:public-api:0.39.0'
implementation 'com.airbyte.api:public-api:0.39.1'
```
<!-- End SDK Installation -->

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

## 2023-09-02 00:11:33
### Changes
Based on:
- OpenAPI Doc 1.0.0
- Speakeasy CLI 1.77.2 (2.93.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v0.39.1] .
### Releases
- [Maven Central v0.39.1] https://central.sonatype.com/artifact/com.airbyte/api/0.39.1 - .
8 changes: 4 additions & 4 deletions gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ configVersion: 1.0.0
management:
docChecksum: 677c33932664e2e3ad3b815e949e0aa9
docVersion: 1.0.0
speakeasyVersion: 1.77.0
generationVersion: 2.91.2
speakeasyVersion: 1.77.2
generationVersion: 2.93.0
generation:
comments:
disableComments: false
Expand All @@ -15,12 +15,12 @@ generation:
telemetryEnabled: true
features:
java:
core: 2.85.0
core: 2.85.2
globalSecurity: 2.81.1
globalServerURLs: 2.82.0
includes: 2.81.1
java:
version: 0.39.0
version: 0.39.1
artifactID: api
companyEmail: info@airbyte.com
companyName: Airbyte
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ publishing {
maven(MavenPublication) {
groupId = 'com.airbyte'
artifactId = 'api'
version = '0.39.0'
version = '0.39.1'

from components.java

Expand Down
4 changes: 2 additions & 2 deletions lib/src/main/java/com/airbyte/api/SDKConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SDKConfiguration {
public int serverIdx = 0;
public String language = "java";
public String openapiDocVersion = "1.0.0";
public String sdkVersion = "0.39.0";
public String genVersion = "2.91.2";
public String sdkVersion = "0.39.1";
public String genVersion = "2.93.0";

}