Skip to content

Commit 1438872

Browse files
committed
chore: bump version to 6.0.0-alpha.4
1 parent edfce11 commit 1438872

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dynamic = ["version"]
44

55
[tool.poetry]
66
name = "deepgram-sdk"
7-
version = "6.0.0-alpha.3"
7+
version = "6.0.0-alpha.4"
88
description = ""
99
readme = "README.md"
1010
authors = []

src/deepgram/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ def __init__(
2323

2424
def get_headers(self) -> typing.Dict[str, str]:
2525
headers: typing.Dict[str, str] = {
26-
"User-Agent": "deepgram-sdk/6.0.0-alpha.3",
26+
"User-Agent": "deepgram-sdk/6.0.0-alpha.4",
2727
"X-Fern-Language": "Python",
2828
"X-Fern-SDK-Name": "deepgram-sdk",
29-
"X-Fern-SDK-Version": "6.0.0-alpha.3",
29+
"X-Fern-SDK-Version": "6.0.0-alpha.4",
3030
**(self.get_custom_headers() or {}),
3131
}
3232
headers["Authorization"] = f"Token {self.api_key}"

0 commit comments

Comments
 (0)