diff --git a/.fern/metadata.json b/.fern/metadata.json index d983d6f..b8a7dbd 100644 --- a/.fern/metadata.json +++ b/.fern/metadata.json @@ -1,6 +1,6 @@ { - "cliVersion": "3.37.6", + "cliVersion": "3.47.1", "generatorName": "fernapi/fern-python-sdk", "generatorVersion": "4.46.14", - "sdkVersion": "0.1.17" + "sdkVersion": "0.1.18" } \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 55074f7..a1d18eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ dynamic = ["version"] [tool.poetry] name = "credal" -version = "0.1.17" +version = "0.1.18" description = "" readme = "README.md" authors = [] diff --git a/src/credal/core/client_wrapper.py b/src/credal/core/client_wrapper.py index fb7ae85..916f5be 100644 --- a/src/credal/core/client_wrapper.py +++ b/src/credal/core/client_wrapper.py @@ -22,10 +22,10 @@ def __init__( def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { - "User-Agent": "credal/0.1.17", + "User-Agent": "credal/0.1.18", "X-Fern-Language": "Python", "X-Fern-SDK-Name": "credal", - "X-Fern-SDK-Version": "0.1.17", + "X-Fern-SDK-Version": "0.1.18", **(self.get_custom_headers() or {}), } headers["Authorization"] = f"Bearer {self._get_api_key()}"