Skip to content

Commit

Permalink
(release): v1.0.0b0
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] authored Mar 12, 2024
1 parent d65a40b commit c6f4ddc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Check out the [HTTP API documentation](https://elevenlabs.io/docs/api-reference)
## ⚙️ Install

```bash
pip install elevenlabs==0.3.0b0
pip install elevenlabs==v1.0.0b0
```

## v0.x to v1.x Migration Guide
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "elevenlabs"
version = "0.0.48"
version = "v1.0.0b0"
description = ""
readme = "README.md"
authors = []
Expand Down
2 changes: 1 addition & 1 deletion src/elevenlabs/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "elevenlabs",
"X-Fern-SDK-Version": "0.0.48",
"X-Fern-SDK-Version": "v1.0.0b0",
}
if self._api_key is not None:
headers["xi-api-key"] = self._api_key
Expand Down

0 comments on commit c6f4ddc

Please sign in to comment.