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 fba1cf8 commit c581567Copy full SHA for c581567
pyproject.toml
@@ -3,7 +3,7 @@ name = "fdr-sdk-py"
3
4
[tool.poetry]
5
name = "fdr-sdk-py"
6
-version = "0.0.4"
+version = "0.0.5"
7
description = ""
8
readme = "README.md"
9
authors = []
src/fern/core/client_wrapper.py
@@ -22,10 +22,10 @@ def __init__(
22
23
def get_headers(self) -> typing.Dict[str, str]:
24
headers: typing.Dict[str, str] = {
25
- "User-Agent": "fdr-sdk-py/0.0.4",
+ "User-Agent": "fdr-sdk-py/0.0.5",
26
"X-Fern-Language": "Python",
27
"X-Fern-SDK-Name": "fdr-sdk-py",
28
- "X-Fern-SDK-Version": "0.0.4",
+ "X-Fern-SDK-Version": "0.0.5",
29
**(self.get_custom_headers() or {}),
30
}
31
token = self._get_token()
0 commit comments