diff --git a/pyproject.toml b/pyproject.toml index 6f250a1..46b3d15 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "credal" [tool.poetry] name = "credal" -version = "0.1.4" +version = "0.1.5" description = "" readme = "README.md" authors = [] diff --git a/src/credal/core/client_wrapper.py b/src/credal/core/client_wrapper.py index 2620ebc..4bd5cd1 100644 --- a/src/credal/core/client_wrapper.py +++ b/src/credal/core/client_wrapper.py @@ -22,10 +22,10 @@ def __init__( def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { - "User-Agent": "credal/0.1.4", + "User-Agent": "credal/0.1.5", "X-Fern-Language": "Python", "X-Fern-SDK-Name": "credal", - "X-Fern-SDK-Version": "0.1.4", + "X-Fern-SDK-Version": "0.1.5", **(self.get_custom_headers() or {}), } headers["Authorization"] = f"Bearer {self._get_api_key()}"