From 2b6bd7d4ab8ec4958d32a7eb04f92654a17f07b1 Mon Sep 17 00:00:00 2001 From: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Date: Thu, 12 Sep 2024 14:52:31 +0000 Subject: [PATCH] Release 0.0.1-beta22 --- pyproject.toml | 2 +- src/gooey/core/client_wrapper.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 02fc3f4..8017264 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gooeyai" -version = "0.0.1-beta21" +version = "0.0.1-beta22" description = "" readme = "README.md" authors = [] diff --git a/src/gooey/core/client_wrapper.py b/src/gooey/core/client_wrapper.py index f3e0b05..f5866a5 100644 --- a/src/gooey/core/client_wrapper.py +++ b/src/gooey/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": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta21", + "X-Fern-SDK-Version": "0.0.1-beta22", } headers["Authorization"] = f"Bearer {self._get_api_key()}" return headers