Skip to content

chore: 🐝 Update SDK - Generate 0.25.4 #146

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 6, 2024
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
10 changes: 5 additions & 5 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ id: 8b5fa338-9106-4734-abf0-e30d67044a90
management:
docChecksum: f4daf2a82fa5421160b71b44ed12f0b9
docVersion: 1.0.43
speakeasyVersion: 1.352.2
generationVersion: 2.385.2
releaseVersion: 0.25.3
configChecksum: ddc7435caf130892c3dee03e0f26840a
speakeasyVersion: 1.354.0
generationVersion: 2.386.2
releaseVersion: 0.25.4
configChecksum: 1f4bb53171d8f53ae1bc81f2b0b040e4
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
repoSubDirectory: .
installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git
published: true
features:
python:
additionalDependencies: 0.1.0
constsAndDefaults: 0.1.3
constsAndDefaults: 0.1.4
core: 4.8.4
examples: 2.81.3
globalSecurity: 2.83.6
Expand Down
10 changes: 5 additions & 5 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
speakeasyVersion: 1.352.2
speakeasyVersion: 1.354.0
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:0016df31d8fd1ddee8895c62863313e3ff9a03e1aecca43c7b7fa995d357d80a
sourceBlobDigest: sha256:1d359865a4c9fed527678b686ca7e41b09bdb44f22e05c5dd7d81079a9e3dfe3
sourceRevisionDigest: sha256:ee0d781765ce00c76d08ae0013b4636a39a807611e9eb20daf6de4a788966abc
sourceBlobDigest: sha256:4d3509bbee8300363a214c69eff09037aa9d589e46846af3687ebe57cb17194c
tags:
- latest
- main
targets:
unstructured-python:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:0016df31d8fd1ddee8895c62863313e3ff9a03e1aecca43c7b7fa995d357d80a
sourceBlobDigest: sha256:1d359865a4c9fed527678b686ca7e41b09bdb44f22e05c5dd7d81079a9e3dfe3
sourceRevisionDigest: sha256:ee0d781765ce00c76d08ae0013b4636a39a807611e9eb20daf6de4a788966abc
sourceBlobDigest: sha256:4d3509bbee8300363a214c69eff09037aa9d589e46846af3687ebe57cb17194c
outLocation: /github/workspace/repo
workflow:
workflowVersion: 1.0.0
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -624,4 +624,14 @@ Based on:
### Generated
- [python v0.25.3] .
### Releases
- [PyPI v0.25.3] https://pypi.org/project/unstructured-client/0.25.3 - .
- [PyPI v0.25.3] https://pypi.org/project/unstructured-client/0.25.3 - .

## 2024-08-06 19:57:54
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.354.0 (2.386.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.25.4] .
### Releases
- [PyPI v0.25.4] https://pypi.org/project/unstructured-client/0.25.4 - .
2 changes: 1 addition & 1 deletion gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: false
python:
version: 0.25.3
version: 0.25.4
additionalDependencies:
dependencies:
deepdiff: '>=6.0'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setuptools.setup(
name='unstructured-client',
version='0.25.3',
version='0.25.4',
author='Unstructured',
description='Python Client SDK for Unstructured API',
license = 'MIT',
Expand Down
6 changes: 3 additions & 3 deletions src/unstructured_client/sdkconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ class SDKConfiguration:
server: Optional[str] = ''
language: str = 'python'
openapi_doc_version: str = '1.0.43'
sdk_version: str = '0.25.3'
gen_version: str = '2.385.2'
user_agent: str = 'speakeasy-sdk/python 0.25.3 2.385.2 1.0.43 unstructured-client'
sdk_version: str = '0.25.4'
gen_version: str = '2.386.2'
user_agent: str = 'speakeasy-sdk/python 0.25.4 2.386.2 1.0.43 unstructured-client'
retry_config: Optional[RetryConfig] = None

def __post_init__(self):
Expand Down