Skip to content

Commit d264990

Browse files
Release 0.4.2
1 parent 48e9e47 commit d264990

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
}
1919
},
2020
"originGitCommit": "d80fa3a4e3f788de634f67aa1a75fdbffbe4908c",
21-
"sdkVersion": "0.4.1"
21+
"sdkVersion": "0.4.2"
2222
}

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 = "vectara"
7-
version = "0.4.1"
7+
version = "0.4.2"
88
description = ""
99
readme = "README.md"
1010
authors = []

src/vectara/core/client_wrapper.py

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

3232
headers: typing.Dict[str, str] = {
33-
"User-Agent": "vectara/0.4.1",
33+
"User-Agent": "vectara/0.4.2",
3434
"X-Fern-Language": "Python",
3535
"X-Fern-Runtime": f"python/{platform.python_version()}",
3636
"X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}",
3737
"X-Fern-SDK-Name": "vectara",
38-
"X-Fern-SDK-Version": "0.4.1",
38+
"X-Fern-SDK-Version": "0.4.2",
3939
**(self.get_custom_headers() or {}),
4040
}
4141
if self._api_key is not None:

0 commit comments

Comments
 (0)