Skip to content
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
4 changes: 2 additions & 2 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ management:
docVersion: 1.0.0
speakeasyVersion: 1.547.1
generationVersion: 2.605.0
releaseVersion: 1.0.0-beta.8
configChecksum: be35150ad69c1400c0320a54e28926cf
releaseVersion: 1.0.0-beta.9
configChecksum: b1af8000140048af3ab3d0feb0cc4164
repoURL: https://github.com/gr4vy/gr4vy-python.git
installationURL: https://github.com/gr4vy/gr4vy-python.git
published: true
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ generation:
oAuth2ClientCredentialsEnabled: false
oAuth2PasswordEnabled: false
python:
version: 1.0.0-beta.8
version: 1.0.0-beta.9
additionalDependencies:
dev:
freezegun: ^1.5.1
Expand Down
12 changes: 6 additions & 6 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ speakeasyVersion: 1.547.1
sources:
openapi:
sourceNamespace: openapi
sourceRevisionDigest: sha256:02c75b95e51cb58110902cb9c6c9f60846166e87e932e0b75fb787e0ec464bad
sourceRevisionDigest: sha256:ff71643e40419a17a0cf48267b5893c06441406c985f9cd37b859d6812c70d93
sourceBlobDigest: sha256:9a3248f2c12c5f6fd8cfe23b8d94ba5df71af09ba16d60d9968eb274f7a9eaab
tags:
- latest
- speakeasy-sdk-regen-1747671680
- speakeasy-sdk-regen-1747672744
- 1.0.0
targets:
python:
source: openapi
sourceNamespace: openapi
sourceRevisionDigest: sha256:02c75b95e51cb58110902cb9c6c9f60846166e87e932e0b75fb787e0ec464bad
sourceRevisionDigest: sha256:ff71643e40419a17a0cf48267b5893c06441406c985f9cd37b859d6812c70d93
sourceBlobDigest: sha256:9a3248f2c12c5f6fd8cfe23b8d94ba5df71af09ba16d60d9968eb274f7a9eaab
codeSamplesNamespace: oas-python-code-samples
codeSamplesRevisionDigest: sha256:987e3197c5a11c1edb961c01d40b46dd51516f2bfd2bc8d8c1a894457a6c4d53
codeSamplesNamespace: openapi-python-code-samples
codeSamplesRevisionDigest: sha256:1bc1e9678825292b249ef0c7393214eb90d2732e9bdf54c3612a35e31fe3a783
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand All @@ -42,7 +42,7 @@ workflow:
token: $pypi_token
codeSamples:
registry:
location: registry.speakeasyapi.dev/gr4vy/gr4vy/oas-python-code-samples
location: registry.speakeasyapi.dev/gr4vy/gr4vy/openapi-python-code-samples
labelOverride:
fixedValue: Python (SDK)
blocking: false
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,14 @@ Based on:
### Generated
- [python v1.0.0-beta.8] .
### Releases
- [PyPI v1.0.0-beta.8] https://pypi.org/project/gr4vy/1.0.0-beta.8 - .
- [PyPI v1.0.0-beta.8] https://pypi.org/project/gr4vy/1.0.0-beta.8 - .

## 2025-05-19 16:38:48
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.547.1 (2.605.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v1.0.0-beta.9] .
### Releases
- [PyPI v1.0.0-beta.9] https://pypi.org/project/gr4vy/1.0.0-beta.9 - .
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "gr4vy"
version = "1.0.0-beta.8"
version = "1.0.0-beta.9"
description = "Python Client SDK Generated by Speakeasy."
authors = [{ name = "Gr4vy" },]
readme = "README-PYPI.md"
Expand Down
4 changes: 2 additions & 2 deletions src/gr4vy/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import importlib.metadata

__title__: str = "gr4vy"
__version__: str = "1.0.0-beta.8"
__version__: str = "1.0.0-beta.9"
__openapi_doc_version__: str = "1.0.0"
__gen_version__: str = "2.605.0"
__user_agent__: str = "speakeasy-sdk/python 1.0.0-beta.8 2.605.0 1.0.0 gr4vy"
__user_agent__: str = "speakeasy-sdk/python 1.0.0-beta.9 2.605.0 1.0.0 gr4vy"

try:
if __package__ is not None:
Expand Down