Skip to content

Commit 13eaeeb

Browse files
committed
ci: regenerated with OpenAPI Doc 0.3.0, Speakeay CLI 1.9.1
1 parent d16d4b3 commit 13eaeeb

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,4 +182,12 @@ Based on:
182182
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
183183
- Speakeasy CLI 1.8.7 https://github.com/speakeasy-api/speakeasy
184184
### Releases
185-
- [PyPI v1.8.7] https://pypi.org/project/speakeasy-client-sdk-python/1.8.7 - .
185+
- [PyPI v1.8.7] https://pypi.org/project/speakeasy-client-sdk-python/1.8.7 - .
186+
187+
## 2023-03-10 00:10:46
188+
### Changes
189+
Based on:
190+
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
191+
- Speakeasy CLI 1.9.1 https://github.com/speakeasy-api/speakeasy
192+
### Releases
193+
- [PyPI v1.9.0] https://pypi.org/project/speakeasy-client-sdk-python/1.9.0 - .

gen.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ configVersion: 1.0.0
22
management:
33
docChecksum: 2bba3b8f9d211b02569b3f9aff0d34b4
44
docVersion: 0.3.0
5-
speakeasyVersion: 1.8.7
5+
speakeasyVersion: 1.9.1
66
generation:
77
telemetryEnabled: true
88
sdkClassName: speakeasy
99
sdkFlattening: true
1010
python:
11-
version: 1.8.7
11+
version: 1.9.0
1212
author: Speakeasy
1313
description: Speakeasy API Client SDK for Python
1414
packageName: speakeasy-client-sdk-python

pylintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,8 @@ disable=raw-checker-failed,
438438
too-many-branches,
439439
chained-comparison,
440440
duplicate-code,
441-
trailing-newlines
441+
trailing-newlines,
442+
too-many-public-methods
442443

443444
# Enable the message, report, category or checker with the given id(s). You can
444445
# either give multiple identifier separated by comma (,) or put this option

setup.py

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

99
setuptools.setup(
1010
name="speakeasy-client-sdk-python",
11-
version="1.8.7",
11+
version="1.9.0",
1212
author="Speakeasy",
1313
description="Speakeasy API Client SDK for Python",
1414
long_description=long_description,

src/speakeasy/sdk.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ class Speakeasy:
3333
_security: shared.Security
3434
_server_url: str = SERVERS[SERVER_PROD]
3535
_language: str = "python"
36-
_sdk_version: str = "1.8.7"
37-
_gen_version: str = "1.8.7"
36+
_sdk_version: str = "1.9.0"
37+
_gen_version: str = "1.9.1"
3838

3939
def __init__(self) -> None:
4040
self._client = requests_http.Session()

0 commit comments

Comments
 (0)