Skip to content

Commit 470c3e7

Browse files
committed
Release 0.0.110
1 parent 7f68d85 commit 470c3e7

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "axiomatic"
33

44
[tool.poetry]
55
name = "axiomatic"
6-
version = "0.0.109"
6+
version = "0.0.110"
77
description = ""
88
readme = "README.md"
99
authors = []

src/axiomatic/base_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
from .fso.client import AsyncFsoClient
2828
from .pic.client import AsyncPicClient
2929

30+
3031
class BaseClient:
3132
"""
3233
Use this class to access the different functions within the SDK. You can instantiate any number of clients with different configuration that will propagate to these functions.

src/axiomatic/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]:
1616
headers: typing.Dict[str, str] = {
1717
"X-Fern-Language": "Python",
1818
"X-Fern-SDK-Name": "axiomatic",
19-
"X-Fern-SDK-Version": "0.0.109",
19+
"X-Fern-SDK-Version": "0.0.110",
2020
}
2121
headers["X-API-Key"] = self.api_key
2222
return headers

0 commit comments

Comments
 (0)