From 9f251543a09a948b4c627db8fc32de417b652998 Mon Sep 17 00:00:00 2001 From: Kaustubh Maske Patil <37668193+nikochiko@users.noreply.github.com> Date: Wed, 11 Sep 2024 20:02:08 +0530 Subject: [PATCH] bump to beta16 --- 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 766ac30..cf531fd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gooeyai" -version = "0.0.1-beta15" +version = "0.0.1-beta16" description = "" readme = "README.md" authors = [] diff --git a/src/gooey/core/client_wrapper.py b/src/gooey/core/client_wrapper.py index 336dbb2..11f7cbf 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-beta15", + "X-Fern-SDK-Version": "0.0.1-beta16", } headers["Authorization"] = f"Bearer {self._get_api_key()}" return headers