From 997184421c0976bb3f8335276bc33ca831e6308f Mon Sep 17 00:00:00 2001 From: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Date: Fri, 15 Mar 2024 14:01:38 +0000 Subject: [PATCH] Release 0.0.8 --- pyproject.toml | 2 +- src/fern/core/client_wrapper.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5637ccd..68ed381 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fern-api" -version = "0.0.0-rc1" +version = "0.0.8" description = "" readme = "README.md" authors = [] diff --git a/src/fern/core/client_wrapper.py b/src/fern/core/client_wrapper.py index 6e6ad5a..28f793a 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.0-rc1", + "X-Fern-SDK-Version": "0.0.8", } headers["Authorization"] = f"Bearer {self._get_token()}" return headers