Skip to content

Commit 1e7a88d

Browse files
committed
Release 0.0.146
1 parent 7510785 commit 1e7a88d

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55

66
The Speechifyinc Python library provides convenient access to the Speechifyinc API from Python.
77

8+
## Documentation
9+
10+
API reference documentation is available [here](https://docs.sws.speechify.com/api-reference).
11+
812
## Installation
913

1014
```sh

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "speechify-api"
33

44
[tool.poetry]
55
name = "speechify-api"
6-
version = "0.0.145"
6+
version = "0.0.146"
77
description = ""
88
readme = "README.md"
99
authors = []

src/speechifyinc/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.145",
25+
"X-Fern-SDK-Version": "0.0.146",
2626
}
2727
headers["Authorization"] = f"Bearer {self._get_token()}"
2828
return headers

0 commit comments

Comments
 (0)