diff --git a/pyproject.toml b/pyproject.toml index f2d23b2..3969707 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "credal" -version = "0.0.17" +version = "0.0.18" description = "" readme = "README.md" authors = [] diff --git a/src/credal/core/client_wrapper.py b/src/credal/core/client_wrapper.py index 2cbd591..5d70d6b 100644 --- a/src/credal/core/client_wrapper.py +++ b/src/credal/core/client_wrapper.py @@ -22,7 +22,7 @@ def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { "X-Fern-Language": "Python", "X-Fern-SDK-Name": "credal", - "X-Fern-SDK-Version": "0.0.17", + "X-Fern-SDK-Version": "0.0.18", } headers["Authorization"] = f"Bearer {self._get_api_key()}" return headers