From 66afd0bfe8f9935bb0790a2ef72a545746ce05f8 Mon Sep 17 00:00:00 2001 From: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Date: Sat, 26 Oct 2024 06:24:11 +0000 Subject: [PATCH] Release 0.1.0 --- pyproject.toml | 2 +- src/vapi/core/client_wrapper.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3f62c21..a02ff70 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vapi_server_sdk" -version = "0.0.0-alpha7" +version = "0.1.0" description = "" readme = "README.md" authors = [] diff --git a/src/vapi/core/client_wrapper.py b/src/vapi/core/client_wrapper.py index 92a4ecd..0d1d097 100644 --- a/src/vapi/core/client_wrapper.py +++ b/src/vapi/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": "vapi_server_sdk", - "X-Fern-SDK-Version": "0.0.0-alpha7", + "X-Fern-SDK-Version": "0.1.0", } headers["Authorization"] = f"Bearer {self._get_token()}" return headers