Skip to content

Commit af85bcb

Browse files
Release 0.2.20
1 parent 0ce0905 commit af85bcb

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
},
1010
"should_generate_websocket_clients": true
1111
},
12-
"sdkVersion": "0.0.284"
12+
"sdkVersion": "0.2.20"
1313
}

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 = "agentmail"
7-
version = "0.0.284"
7+
version = "0.2.20"
88
description = ""
99
readme = "README.md"
1010
authors = []

src/agentmail/core/client_wrapper.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,12 @@ def get_headers(self) -> typing.Dict[str, str]:
2828
import platform
2929

3030
headers: typing.Dict[str, str] = {
31+
"User-Agent": "agentmail/0.2.20",
3132
"X-Fern-Language": "Python",
3233
"X-Fern-Runtime": f"python/{platform.python_version()}",
3334
"X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}",
3435
"X-Fern-SDK-Name": "agentmail",
35-
"X-Fern-SDK-Version": "0.0.284",
36+
"X-Fern-SDK-Version": "0.2.20",
3637
**(self.get_custom_headers() or {}),
3738
}
3839
headers["Authorization"] = f"Bearer {self._get_api_key()}"

0 commit comments

Comments
 (0)