Skip to content

Commit

Permalink
Bump version to 1.11.0 (#390)
Browse files Browse the repository at this point in the history
Side note, would be nice to inject package version at build time from
git tag, and for the SDK version header to read it from package itself.
  • Loading branch information
lacop11 authored Oct 25, 2024
1 parent 9a45a3f commit 04fd89f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 = "1.10.0"
version = "1.11.0"
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": "1.10.0",
"X-Fern-SDK-Version": "1.11.0",
}
if self._api_key is not None:
headers["xi-api-key"] = self._api_key
Expand Down

0 comments on commit 04fd89f

Please sign in to comment.