diff --git a/pyproject.toml b/pyproject.toml index f0e83d5..169349c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,10 @@ [project] name = "speechify-api" -version = "3.0.0" +version = "3.0.1" [tool.poetry] name = "speechify-api" -version = "3.0.0" +version = "3.0.1" description = "Official Speechify API SDK" readme = "README.md" authors = [ diff --git a/src/speechify/core/client_wrapper.py b/src/speechify/core/client_wrapper.py index 0d47222..11e6103 100644 --- a/src/speechify/core/client_wrapper.py +++ b/src/speechify/core/client_wrapper.py @@ -31,12 +31,12 @@ def get_headers(self) -> typing.Dict[str, str]: import platform headers: typing.Dict[str, str] = { - "User-Agent": "speechify-api/3.0.0", + "User-Agent": "speechify-api/3.0.1", "X-Fern-Language": "Python", "X-Fern-Runtime": f"python/{platform.python_version()}", "X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}", "X-Fern-SDK-Name": "speechify-api", - "X-Fern-SDK-Version": "3.0.0", + "X-Fern-SDK-Version": "3.0.1", **(self.get_custom_headers() or {}), } if self._version is not None: