Skip to content

Commit

Permalink
prepare for v0.0.30
Browse files Browse the repository at this point in the history
  • Loading branch information
jessekrubin committed Feb 19, 2025
1 parent 12c95b1 commit d150397
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ ___
import datetime as pydt
import typing as t
from os import PathLike
from pathlib import Path

import typing_extensions as te

Expand Down Expand Up @@ -367,6 +368,7 @@ class FsPath:
def __ge__(self, other: PathLike[str] | str) -> bool: ...
def __truediv__(self, other: PathLike[str] | str) -> FsPath: ...
def __rtruediv__(self, other: PathLike[str] | str) -> FsPath: ...
def to_pathlib(self) -> Path: ...
def read_text(self) -> str: ...
def read_bytes(self) -> bytes: ...
def absolute(self) -> FsPath: ...
Expand Down Expand Up @@ -2983,8 +2985,7 @@ import ry

if t.TYPE_CHECKING:
from ry import Duration, Headers

from ._url import URL
from ry.ryo3._url import URL


class HttpClient:
Expand Down
5 changes: 3 additions & 2 deletions docs/src/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import datetime as pydt
import typing as t
from os import PathLike
from pathlib import Path

import typing_extensions as te

Expand Down Expand Up @@ -264,6 +265,7 @@ class FsPath:
def __ge__(self, other: PathLike[str] | str) -> bool: ...
def __truediv__(self, other: PathLike[str] | str) -> FsPath: ...
def __rtruediv__(self, other: PathLike[str] | str) -> FsPath: ...
def to_pathlib(self) -> Path: ...
def read_text(self) -> str: ...
def read_bytes(self) -> bytes: ...
def absolute(self) -> FsPath: ...
Expand Down Expand Up @@ -2880,8 +2882,7 @@ import ry

if t.TYPE_CHECKING:
from ry import Duration, Headers

from ._url import URL
from ry.ryo3._url import URL


class HttpClient:
Expand Down

0 comments on commit d150397

Please sign in to comment.