diff --git a/README.md b/README.md index 3c7e86d..fffcede 100755 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Handling errors in this SDK should largely match your expectations. All operati | Error Object | Status Code | Content Type | | --------------- | --------------- | --------------- | -| errors.SDKError | 400-600 | */* | +| errors.SDKError | 4x-5xx | */* | ### Example diff --git a/RELEASES.md b/RELEASES.md index 576a1f1..78ebad2 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -230,4 +230,12 @@ Based on: - OpenAPI Doc 1.0.0 - Speakeasy CLI 1.126.0 (2.213.3) https://github.com/speakeasy-api/speakeasy ### Generated -- [python v0.11.0] . \ No newline at end of file +- [python v0.11.0] . + +## 2023-12-19 00:55:03 +### Changes +Based on: +- OpenAPI Doc 1.0.0 +- Speakeasy CLI 1.127.0 (2.220.0) https://github.com/speakeasy-api/speakeasy +### Generated +- [python v0.11.1] . \ No newline at end of file diff --git a/docs/sdks/pets/README.md b/docs/sdks/pets/README.md index 059b1af..3749b4c 100644 --- a/docs/sdks/pets/README.md +++ b/docs/sdks/pets/README.md @@ -34,7 +34,7 @@ if res.status_code == 200: | Error Object | Status Code | Content Type | | --------------- | --------------- | --------------- | -| errors.SDKError | 400-600 | */* | +| errors.SDKError | 4x-5xx | */* | ## list_pets @@ -71,7 +71,7 @@ if res.pets is not None: | Error Object | Status Code | Content Type | | --------------- | --------------- | --------------- | -| errors.SDKError | 400-600 | */* | +| errors.SDKError | 4x-5xx | */* | ## show_pet_by_id @@ -110,4 +110,4 @@ if res.pet is not None: | Error Object | Status Code | Content Type | | --------------- | --------------- | --------------- | -| errors.SDKError | 400-600 | */* | +| errors.SDKError | 4x-5xx | */* | diff --git a/gen.yaml b/gen.yaml index 442ab69..348e0f5 100644 --- a/gen.yaml +++ b/gen.yaml @@ -2,20 +2,22 @@ configVersion: 1.0.0 management: docChecksum: 2516596125ef223fbbef6c434d22eaac docVersion: 1.0.0 - speakeasyVersion: 1.126.0 - generationVersion: 2.213.3 + speakeasyVersion: 1.127.0 + generationVersion: 2.220.0 generation: comments: {} sdkClassName: test repoURL: https://github.com/speakeasy-sdks/test-repo-test2.git usageSnippets: optionalPropertyRendering: withExample + fixes: + nameResolutionDec2023: false features: python: - core: 4.3.0 + core: 4.3.1 globalServerURLs: 2.82.1 python: - version: 0.11.0 + version: 0.11.1 author: my-test clientServerStatusCodesAsErrors: true description: Python Client SDK Generated by Speakeasy diff --git a/setup.py b/setup.py index 93a09da..9fc3858 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setuptools.setup( name="test", - version="0.11.0", + version="0.11.1", author="my-test", description="Python Client SDK Generated by Speakeasy", long_description=long_description, diff --git a/src/test/sdkconfiguration.py b/src/test/sdkconfiguration.py index 5106eec..5c42b45 100644 --- a/src/test/sdkconfiguration.py +++ b/src/test/sdkconfiguration.py @@ -19,9 +19,9 @@ class SDKConfiguration: server_idx: int = 0 language: str = 'python' openapi_doc_version: str = '1.0.0' - sdk_version: str = '0.11.0' - gen_version: str = '2.213.3' - user_agent: str = 'speakeasy-sdk/python 0.11.0 2.213.3 1.0.0 test' + sdk_version: str = '0.11.1' + gen_version: str = '2.220.0' + user_agent: str = 'speakeasy-sdk/python 0.11.1 2.220.0 1.0.0 test' retry_config: RetryConfig = None def get_server_details(self) -> Tuple[str, Dict[str, str]]: