Skip to content

Commit 119bb3d

Browse files
committed
fix(storage): bump breaking version requirements to 3.0.0
otherwise bumping its version to 2.19 would be a breaking change, as this deprecated method would raise an error
1 parent cf5a702 commit 119bb3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/storage/src/storage3/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77

88
class SyncClient(Client):
99
@deprecated(
10-
"0.11.3", "1.0.0", __version__, "Use `Client` from the httpx package instead"
10+
"0.11.3", "3.0.0", __version__, "Use `Client` from the httpx package instead"
1111
)
1212
def __init__(self, *args, **kwargs):
1313
super().__init__(*args, **kwargs)
1414

1515
@deprecated(
1616
"0.11.3",
17-
"1.0.0",
17+
"3.0.0",
1818
__version__,
1919
"Use `close` method from `Client` in the httpx package instead",
2020
)

0 commit comments

Comments
 (0)