From bb0403dd73cb7e12e7d0177e3e367517be03bf5c Mon Sep 17 00:00:00 2001 From: lukeocodes Date: Fri, 10 Jul 2026 20:38:57 +0100 Subject: [PATCH] fix: correct SDK version strings and release 3.0.1 Ensures pyproject.toml and client_wrapper.py version strings are consistent at the released version (the generic release-please updater no-ops without an annotation, so these are set explicitly). Release-As: 3.0.1 --- pyproject.toml | 4 ++-- src/speechify/core/client_wrapper.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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: