diff --git a/pyproject.toml b/pyproject.toml index 32c4905..15d6dee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vocode-api" -version = "0.0.14" +version = "0.0.15" description = "" readme = "README.md" authors = [] diff --git a/src/vocode/core/client_wrapper.py b/src/vocode/core/client_wrapper.py index f332df0..8df2532 100644 --- a/src/vocode/core/client_wrapper.py +++ b/src/vocode/core/client_wrapper.py @@ -14,7 +14,7 @@ def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { "X-Fern-Language": "Python", "X-Fern-SDK-Name": "vocode-api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", } headers["Authorization"] = f"Bearer {self._get_token()}" return headers