diff --git a/pyproject.toml b/pyproject.toml index a6f0cea..8484d67 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "intercom-python" [tool.poetry] name = "intercom-python" -version = "4.0.0" +version = "0.1.0" description = "" readme = "README.md" authors = [] diff --git a/src/intercom/core/client_wrapper.py b/src/intercom/core/client_wrapper.py index 0f97b26..bc9cbbc 100644 --- a/src/intercom/core/client_wrapper.py +++ b/src/intercom/core/client_wrapper.py @@ -20,10 +20,10 @@ def __init__( def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { - "User-Agent": "intercom-python/4.0.0", + "User-Agent": "intercom-python/0.1.0", "X-Fern-Language": "Python", "X-Fern-SDK-Name": "intercom-python", - "X-Fern-SDK-Version": "4.0.0", + "X-Fern-SDK-Version": "0.1.0", } headers["Authorization"] = f"Bearer {self._get_token()}" return headers