diff --git a/pyproject.toml b/pyproject.toml index b35d398..2b9d513 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "anduril-lattice-sdk" [tool.poetry] name = "anduril-lattice-sdk" -version = "3.0.0" +version = "3.1.0" description = "HTTP clients for the Anduril Lattice SDK" readme = "README.md" authors = [ diff --git a/src/anduril/core/client_wrapper.py b/src/anduril/core/client_wrapper.py index 6a6ddd9..5292b2c 100644 --- a/src/anduril/core/client_wrapper.py +++ b/src/anduril/core/client_wrapper.py @@ -22,10 +22,10 @@ def __init__( def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { - "User-Agent": "anduril-lattice-sdk/3.0.0", + "User-Agent": "anduril-lattice-sdk/3.1.0", "X-Fern-Language": "Python", "X-Fern-SDK-Name": "anduril-lattice-sdk", - "X-Fern-SDK-Version": "3.0.0", + "X-Fern-SDK-Version": "3.1.0", **(self.get_custom_headers() or {}), } token = self._get_token()