Skip to content

Commit 1f7cd9e

Browse files
committed
Release 0.0.149
1 parent e20ede0 commit 1f7cd9e

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

pyproject.toml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,20 @@ name = "speechify-api"
33

44
[tool.poetry]
55
name = "speechify-api"
6-
version = "0.0.148"
7-
description = ""
6+
version = "0.0.149"
7+
description = "Official Speechify API SDK"
88
readme = "README.md"
9-
authors = []
10-
keywords = []
9+
authors = [
10+
"Speechify <[email protected]>"
11+
]
12+
keywords = [
13+
"speechify",
14+
"ai",
15+
"api",
16+
"sdk",
17+
"text-to-speech",
18+
"tts"
19+
]
1120

1221
classifiers = [
1322
"Intended Audience :: Developers",
@@ -31,6 +40,8 @@ packages = [
3140
]
3241

3342
[project.urls]
43+
Documentation = 'https://docs.sws.speechify.com/api-reference'
44+
Homepage = 'https://docs.sws.speechify.com'
3445
Repository = 'https://github.com/speechifyinc/speechify-api-sdk-python'
3546

3647
[tool.poetry.dependencies]

src/speechify/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def get_headers(self) -> typing.Dict[str, str]:
2222
headers: typing.Dict[str, str] = {
2323
"X-Fern-Language": "Python",
2424
"X-Fern-SDK-Name": "speechify-api",
25-
"X-Fern-SDK-Version": "0.0.148",
25+
"X-Fern-SDK-Version": "0.0.149",
2626
}
2727
headers["Authorization"] = f"Bearer {self._get_token()}"
2828
return headers

0 commit comments

Comments
 (0)