We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f3212c commit dea1fe4Copy full SHA for dea1fe4
pyproject.toml
@@ -3,7 +3,7 @@ name = "python-intercom"
3
4
[tool.poetry]
5
name = "python-intercom"
6
-version = "4.0.0a2"
+version = "4.0.0"
7
description = ""
8
readme = "README.md"
9
authors = []
src/intercom/core/client_wrapper.py
@@ -20,10 +20,10 @@ def __init__(
20
21
def get_headers(self) -> typing.Dict[str, str]:
22
headers: typing.Dict[str, str] = {
23
- "User-Agent": "python-intercom/4.0.0a2",
+ "User-Agent": "python-intercom/4.0.0",
24
"X-Fern-Language": "Python",
25
"X-Fern-SDK-Name": "python-intercom",
26
- "X-Fern-SDK-Version": "4.0.0a2",
+ "X-Fern-SDK-Version": "4.0.0",
27
}
28
headers["Authorization"] = f"Bearer {self._get_token()}"
29
return headers
0 commit comments