Skip to content

Commit f154af4

Browse files
SDK regeneration
1 parent 3fabe07 commit f154af4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
"numpydoc": ">=1.7.0,<2.0.0"
2323
}
2424
},
25-
"sdkVersion": "0.0.0"
25+
"sdkVersion": "0.2.0"
2626
}

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 = "truefoundry-sdk"
7-
version = "0.0.0"
7+
version = "0.2.0"
88
description = ""
99
readme = "README.md"
1010
authors = []

src/truefoundry_sdk/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ def get_headers(self) -> typing.Dict[str, str]:
2424
import platform
2525

2626
headers: typing.Dict[str, str] = {
27-
"User-Agent": "truefoundry-sdk/0.0.0",
27+
"User-Agent": "truefoundry-sdk/0.2.0",
2828
"X-Fern-Language": "Python",
2929
"X-Fern-Runtime": f"python/{platform.python_version()}",
3030
"X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}",
3131
"X-Fern-SDK-Name": "truefoundry-sdk",
32-
"X-Fern-SDK-Version": "0.0.0",
32+
"X-Fern-SDK-Version": "0.2.0",
3333
**(self.get_custom_headers() or {}),
3434
}
3535
headers["Authorization"] = f"Bearer {self._get_api_key()}"

0 commit comments

Comments
 (0)