diff --git a/pyproject.toml b/pyproject.toml index 68ed381..c53da2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fern-api" -version = "0.0.8" +version = "0.0.9" description = "" readme = "README.md" authors = [] diff --git a/src/fern/core/client_wrapper.py b/src/fern/core/client_wrapper.py index 28f793a..c83a485 100644 --- a/src/fern/core/client_wrapper.py +++ b/src/fern/core/client_wrapper.py @@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { "X-Fern-Language": "Python", "X-Fern-SDK-Name": "fern-api", - "X-Fern-SDK-Version": "0.0.8", + "X-Fern-SDK-Version": "0.0.9", } headers["Authorization"] = f"Bearer {self._get_token()}" return headers