Skip to content

Commit c04a92a

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.44.2
1 parent a8b05c9 commit c04a92a

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,12 @@ Based on:
198198
- OpenAPI Doc 1.0.0
199199
- Speakeasy CLI 1.43.0 (2.35.3) https://github.com/speakeasy-api/speakeasy
200200
### Releases
201-
- [PyPI v0.12.0] https://pypi.org/project/airbyte-api/0.12.0 - .
201+
- [PyPI v0.12.0] https://pypi.org/project/airbyte-api/0.12.0 - .
202+
203+
## 2023-06-07 00:14:25
204+
### Changes
205+
Based on:
206+
- OpenAPI Doc 1.0.0
207+
- Speakeasy CLI 1.44.2 (2.35.9) https://github.com/speakeasy-api/speakeasy
208+
### Releases
209+
- [PyPI v0.12.1] https://pypi.org/project/airbyte-api/0.12.1 - .

docs/airbyte/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Airbyte SDK
22

3+
## Overview
4+
35
### Available Operations
46

gen.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ configVersion: 1.0.0
22
management:
33
docChecksum: e82f3e11abf47c2509f115468e75bb06
44
docVersion: 1.0.0
5-
speakeasyVersion: 1.43.0
6-
generationVersion: 2.35.3
5+
speakeasyVersion: 1.44.2
6+
generationVersion: 2.35.9
77
generation:
88
sdkClassName: airbyte
99
singleTagPerOp: false
1010
telemetryEnabled: true
1111
python:
12-
version: 0.12.0
12+
version: 0.12.1
1313
author: Airbyte
1414
description: Python Client SDK for Airbyte API
1515
maxMethodParams: 0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setuptools.setup(
1212
name="airbyte-api",
13-
version="0.12.0",
13+
version="0.12.1",
1414
author="Airbyte",
1515
description="Python Client SDK for Airbyte API",
1616
long_description=long_description,

src/airbyte/sdkconfiguration.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import requests
44
from dataclasses import dataclass
55

6+
67
SERVERS = [
78
'https://api.airbyte.com/v1/',
89
# Airbyte API v1
@@ -16,8 +17,8 @@ class SDKConfiguration:
1617
server_url: str = ''
1718
server_idx: int = 0
1819
language: str = 'python'
19-
sdk_version: str = '0.12.0'
20-
gen_version: str = '2.35.3'
20+
sdk_version: str = '0.12.1'
21+
gen_version: str = '2.35.9'
2122

2223
def get_server_details(self) -> tuple[str, dict[str, str]]:
2324
if self.server_url:

0 commit comments

Comments
 (0)