Skip to content
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

release: 0.6.0 #36

Merged
merged 20 commits into from
Aug 14, 2024
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
5427b56
chore(internal): codegen related update (#37)
stainless-app[bot] Jul 30, 2024
c496af8
chore(tests): update prism version (#38)
stainless-app[bot] Jul 30, 2024
275bdd3
chore: fix error message import example (#39)
stainless-app[bot] Jul 30, 2024
8c8b921
chore(internal): add type construction helper (#40)
stainless-app[bot] Jul 30, 2024
99b6f5b
feat(api): update via SDK Studio (#41)
Aug 1, 2024
c5fdc23
feat(api): update via SDK Studio (#45)
stainless-app[bot] Aug 1, 2024
fab32ca
feat(api): update via SDK Studio (#46)
stainless-app[bot] Aug 1, 2024
36cbfa1
feat(api): added method to generate applications content (#47)
stainless-app[bot] Aug 8, 2024
af27fe8
chore(internal): codegen related update (#48)
stainless-app[bot] Aug 8, 2024
f69e598
chore(internal): test updates (#49)
stainless-app[bot] Aug 8, 2024
4357329
chore(internal): bump ruff version (#50)
stainless-app[bot] Aug 8, 2024
91e721c
chore(internal): update pydantic compat helper function (#51)
stainless-app[bot] Aug 8, 2024
fa82a92
chore(internal): remove deprecated ruff config (#52)
stainless-app[bot] Aug 8, 2024
df694a3
docs(api): updates to API spec (#53)
stainless-app[bot] Aug 14, 2024
7c2f07b
chore(ci): bump prism mock server version (#54)
stainless-app[bot] Aug 14, 2024
0a92c06
chore(internal): ensure package is importable in lint cmd (#55)
stainless-app[bot] Aug 14, 2024
a154150
chore(internal): codegen related update (#57)
stainless-app[bot] Aug 14, 2024
f69da53
docs(api): updates to API spec (#58)
stainless-app[bot] Aug 14, 2024
9db65da
release: 0.6.0
stainless-app[bot] Aug 14, 2024
487c0e4
Revert "chore(internal): codegen related update (#57)"
ramedina86 Aug 14, 2024
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
Prev Previous commit
Next Next commit
chore: fix error message import example (#39)
stainless-app[bot] authored and stainless-bot committed Jul 30, 2024
commit 275bdd379329ee5d84959fa650d62f26d93ff781
2 changes: 1 addition & 1 deletion src/writerai/_base_client.py
Original file line number Diff line number Diff line change
@@ -363,7 +363,7 @@ def __init__(

if max_retries is None: # pyright: ignore[reportUnnecessaryComparison]
raise TypeError(
"max_retries cannot be None. If you want to disable retries, pass `0`; if you want unlimited retries, pass `math.inf` or a very high number; if you want the default behavior, pass `writer-sdk.DEFAULT_MAX_RETRIES`"
"max_retries cannot be None. If you want to disable retries, pass `0`; if you want unlimited retries, pass `math.inf` or a very high number; if you want the default behavior, pass `writerai.DEFAULT_MAX_RETRIES`"
)

def _enforce_trailing_slash(self, url: URL) -> URL: