From 371234b98fa202b581d62b774ce09fb406adca42 Mon Sep 17 00:00:00 2001 From: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Date: Tue, 22 Jul 2025 22:06:42 +0000 Subject: [PATCH] SDK regeneration --- pyproject.toml | 2 +- src/intercom/core/client_wrapper.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8c1c816..b19f40e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "python-intercom" [tool.poetry] name = "python-intercom" -version = "4.0.0a2" +version = "4.0.0" description = "" readme = "README.md" authors = [] diff --git a/src/intercom/core/client_wrapper.py b/src/intercom/core/client_wrapper.py index 8837065..9590225 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": "python-intercom/4.0.0a2", + "User-Agent": "python-intercom/4.0.0", "X-Fern-Language": "Python", "X-Fern-SDK-Name": "python-intercom", - "X-Fern-SDK-Version": "4.0.0a2", + "X-Fern-SDK-Version": "4.0.0", } headers["Authorization"] = f"Bearer {self._get_token()}" return headers