From 6bebeac6b40b29dc75b3f5905effa6fc0dd1cf49 Mon Sep 17 00:00:00 2001 From: Billy Trend Date: Mon, 30 Sep 2024 18:06:43 +0100 Subject: [PATCH] 5.11.0 --- pyproject.toml | 2 +- src/cohere/core/client_wrapper.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 46ed9405b..fa8e05378 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cohere" -version = "5.11.0a0" +version = "5.11.0" description = "" readme = "README.md" authors = [] diff --git a/src/cohere/core/client_wrapper.py b/src/cohere/core/client_wrapper.py index fd0ba72b0..c92dd1d42 100644 --- a/src/cohere/core/client_wrapper.py +++ b/src/cohere/core/client_wrapper.py @@ -24,7 +24,7 @@ def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { "X-Fern-Language": "Python", "X-Fern-SDK-Name": "cohere", - "X-Fern-SDK-Version": "5.11.0a0", + "X-Fern-SDK-Version": "5.11.0", } if self._client_name is not None: headers["X-Client-Name"] = self._client_name