Skip to content

Commit 96e6665

Browse files
committed
ci: regenerated with OpenAPI Doc 0.3.0, Speakeay CLI 1.44.2
1 parent 09725cf commit 96e6665

File tree

6 files changed

+18
-9
lines changed

6 files changed

+18
-9
lines changed

RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,4 +518,12 @@ Based on:
518518
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
519519
- Speakeasy CLI 1.42.3 (2.35.3) https://github.com/speakeasy-api/speakeasy
520520
### Releases
521-
- [PyPI v1.31.0] https://pypi.org/project/speakeasy-client-sdk-python/1.31.0 - .
521+
- [PyPI v1.31.0] https://pypi.org/project/speakeasy-client-sdk-python/1.31.0 - .
522+
523+
## 2023-06-07 00:11:54
524+
### Changes
525+
Based on:
526+
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
527+
- Speakeasy CLI 1.44.2 (2.35.9) https://github.com/speakeasy-api/speakeasy
528+
### Releases
529+
- [PyPI v1.31.1] https://pypi.org/project/speakeasy-client-sdk-python/1.31.1 - .

docs/speakeasy/README.md

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

33
## Overview
44

5-
The Speakeasy API allows teams to manage common operations with their APIs
5+
Speakeasy API: The Speakeasy API allows teams to manage common operations with their APIs
66

77
The Speakeasy Platform Documentation
88
<https://docs.speakeasyapi.dev>

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: 2bba3b8f9d211b02569b3f9aff0d34b4
44
docVersion: 0.3.0
5-
speakeasyVersion: 1.42.3
6-
generationVersion: 2.35.3
5+
speakeasyVersion: 1.44.2
6+
generationVersion: 2.35.9
77
generation:
88
sdkClassName: speakeasy
99
singleTagPerOp: false
1010
telemetryEnabled: true
1111
python:
12-
version: 1.31.0
12+
version: 1.31.1
1313
author: Speakeasy
1414
description: Speakeasy API Client SDK for Python
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="speakeasy-client-sdk-python",
13-
version="1.31.0",
13+
version="1.31.1",
1414
author="Speakeasy",
1515
description="Speakeasy API Client SDK for Python",
1616
long_description=long_description,

src/speakeasy/sdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from typing import Optional
1515

1616
class Speakeasy:
17-
r"""The Speakeasy API allows teams to manage common operations with their APIs
17+
r"""Speakeasy API: The Speakeasy API allows teams to manage common operations with their APIs
1818
https://docs.speakeasyapi.dev - The Speakeasy Platform Documentation
1919
"""
2020
api_endpoints: APIEndpoints

src/speakeasy/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
SERVER_PROD = 'prod'
78
SERVERS = {
89
SERVER_PROD: 'https://api.prod.speakeasyapi.dev',
@@ -17,8 +18,8 @@ class SDKConfiguration:
1718
server_url: str = ''
1819
server: str = ''
1920
language: str = 'python'
20-
sdk_version: str = '1.31.0'
21-
gen_version: str = '2.35.3'
21+
sdk_version: str = '1.31.1'
22+
gen_version: str = '2.35.9'
2223

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

0 commit comments

Comments
 (0)