Skip to content
This repository was archived by the owner on Sep 12, 2025. It is now read-only.
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
9 changes: 5 additions & 4 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ id: 8618b570-44d2-4c9e-aa91-d78e8fe5330e
management:
docChecksum: 6a3c4265582b7a6d51d438f935f03946
docVersion: 1.0.0
speakeasyVersion: 1.422.1
generationVersion: 2.438.15
releaseVersion: 0.1.1
configChecksum: 9c66e586ba01918c7530870d3cdb2ecb
speakeasyVersion: 1.423.1
generationVersion: 2.442.11
releaseVersion: 0.2.0
configChecksum: 6f8d3a2df81e982a349004e60ee623a2
repoURL: https://github.com/unkeyed/unkey-py.git
installationURL: https://github.com/unkeyed/unkey-py.git
published: true
Expand All @@ -33,6 +33,7 @@ features:
responseFormat: 1.0.1
retries: 3.0.2
sdkHooks: 1.0.0
tests: 1.6.0
unions: 3.0.2
generatedFiles:
- .devcontainer/README.md
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: true
python:
version: 0.1.1
version: 0.2.0
additionalDependencies:
dev: {}
main: {}
Expand Down
8 changes: 4 additions & 4 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
speakeasyVersion: 1.422.1
speakeasyVersion: 1.423.1
sources:
Unkey-OAS:
sourceNamespace: unkey-oas
sourceRevisionDigest: sha256:d83811be4fc2592537d18810313c7f7ae2d8749dd3b952924217478426bf353a
sourceRevisionDigest: sha256:dadcd25da50cf8783e6c2fba52f0c5e004af0c77635edacdc6948b5d8cf88c51
sourceBlobDigest: sha256:6af87205b63b788e53a11d7145cd48df3e627187a5a2f694c27e3b2b49b06871
tags:
- latest
Expand All @@ -11,10 +11,10 @@ targets:
unkey:
source: Unkey-OAS
sourceNamespace: unkey-oas
sourceRevisionDigest: sha256:d83811be4fc2592537d18810313c7f7ae2d8749dd3b952924217478426bf353a
sourceRevisionDigest: sha256:dadcd25da50cf8783e6c2fba52f0c5e004af0c77635edacdc6948b5d8cf88c51
sourceBlobDigest: sha256:6af87205b63b788e53a11d7145cd48df3e627187a5a2f694c27e3b2b49b06871
codeSamplesNamespace: unkey-oas-code-samples
codeSamplesRevisionDigest: sha256:6f1836c611b2287bca5a0908a09f9cc0c8b8d6011d4327820f07ac462b0bce3a
codeSamplesRevisionDigest: sha256:7555f203175249a448e9cc199ac850a15ba297f09eb320ec9913825d0979f417
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,14 @@ Based on:
### Generated
- [python v0.1.1] .
### Releases
- [PyPI v0.1.1] https://pypi.org/project/unkey/0.1.1 - .
- [PyPI v0.1.1] https://pypi.org/project/unkey/0.1.1 - .

## 2024-10-29 14:20:55
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.423.1 (2.442.11) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.2.0] .
### Releases
- [PyPI v0.2.0] https://pypi.org/project/unkey/0.2.0 - .
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "unkey"
version = "0.1.1"
version = "0.2.0"
description = "Python Client SDK Generated by Speakeasy."
authors = ["Speakeasy",]
readme = "README-PYPI.md"
Expand Down
2 changes: 1 addition & 1 deletion src/unkey/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import importlib.metadata

__title__: str = "unkey"
__version__: str = "0.1.1"
__version__: str = "0.2.0"

try:
if __package__ is not None:
Expand Down
6 changes: 3 additions & 3 deletions src/unkey/sdkconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class SDKConfiguration:
server_idx: Optional[int] = 0
language: str = "python"
openapi_doc_version: str = "1.0.0"
sdk_version: str = "0.1.1"
gen_version: str = "2.438.15"
user_agent: str = "speakeasy-sdk/python 0.1.1 2.438.15 1.0.0 unkey"
sdk_version: str = "0.2.0"
gen_version: str = "2.442.11"
user_agent: str = "speakeasy-sdk/python 0.2.0 2.442.11 1.0.0 unkey"
retry_config: OptionalNullable[RetryConfig] = Field(default_factory=lambda: UNSET)
timeout_ms: Optional[int] = None

Expand Down
Loading