diff --git a/pyproject.toml b/pyproject.toml index 3f2afdd..c52e9c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "credal" [tool.poetry] name = "credal" -version = "0.0.30" +version = "0.1.0" description = "" readme = "README.md" authors = [] diff --git a/src/credal/core/client_wrapper.py b/src/credal/core/client_wrapper.py index f9e7729..cad4421 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.0.30", + "User-Agent": "credal/0.1.0", "X-Fern-Language": "Python", "X-Fern-SDK-Name": "credal", - "X-Fern-SDK-Version": "0.0.30", + "X-Fern-SDK-Version": "0.1.0", **(self.get_custom_headers() or {}), } headers["Authorization"] = f"Bearer {self._get_api_key()}"