Skip to content

Commit d8e68b3

Browse files
committed
Bump to 0.40.0-dev
1 parent 6491041 commit d8e68b3

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ generation:
1414
oAuth2ClientCredentialsEnabled: false
1515
oAuth2PasswordEnabled: false
1616
python:
17-
version: 0.39.1
17+
version: 0.40.0-dev
1818
additionalDependencies:
1919
dev:
2020
deepdiff: '>=6.0'

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[project]
22
name = "unstructured-client"
3-
version = "0.39.1"
3+
version = "0.40.0-dev"
44
description = "Python Client SDK for Unstructured API"
55
authors = [{ name = "Unstructured" },]
66
readme = "README-PYPI.md"
77
requires-python = ">=3.9.2"
88
dependencies = [
99
"aiofiles >=24.1.0",
1010
"cryptography >=3.1",
11+
"httpcore >=1.0.9",
1112
"httpx >=0.27.0",
12-
"pydantic >=2.10.3",
13-
"nest-asyncio >=1.6.0",
13+
"pydantic >=2.11.2",
1414
"pypdf >=4.0",
1515
"requests-toolbelt >=1.0.0",
1616
]
@@ -52,6 +52,8 @@ pythonpath = ["src"]
5252

5353
[tool.mypy]
5454
disable_error_code = "misc"
55+
explicit_package_bases = true
56+
mypy_path = "src"
5557

5658
[[tool.mypy.overrides]]
5759
module = "typing_inspect"

src/unstructured_client/_version.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
import importlib.metadata
44

55
__title__: str = "unstructured-client"
6-
__version__: str = "0.39.1"
7-
__openapi_doc_version__: str = "1.1.34"
8-
__gen_version__: str = "2.610.0"
9-
__user_agent__: str = "speakeasy-sdk/python 0.39.1 2.610.0 1.1.34 unstructured-client"
6+
__version__: str = "0.40.0-dev"
7+
__openapi_doc_version__: str = "1.1.39"
8+
__gen_version__: str = "2.632.2"
9+
__user_agent__: str = (
10+
"speakeasy-sdk/python 0.40.0-dev 2.632.2 1.1.39 unstructured-client"
11+
)
1012

1113
try:
1214
if __package__ is not None:

0 commit comments

Comments
 (0)