diff --git a/README.md b/README.md index 27ce8c9..f2ffa69 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ export OUTPOST_API_TOKEN= import outpostkit print(outpostkit.__version__) ``` -`0.0.68` +`0.0.69` ## Create a client diff --git a/outpostkit/__init__.py b/outpostkit/__init__.py index 564d85c..72feaab 100644 --- a/outpostkit/__init__.py +++ b/outpostkit/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.68" +__version__ = "0.0.69" from outpostkit.client import Client as Client from outpostkit.endpoints import Endpoint as Endpoint from outpostkit.endpoints import Endpoints as Endpoints diff --git a/outpostkit/client.py b/outpostkit/client.py index 1360394..87ae4ee 100644 --- a/outpostkit/client.py +++ b/outpostkit/client.py @@ -225,7 +225,7 @@ def _build_httpx_client( **kwargs, ) -> Union[httpx.Client, httpx.AsyncClient]: headers = { - "User-Agent": "outpost-python/0.0.68", + "User-Agent": "outpost-python/0.0.69", } if ( diff --git a/pyproject.toml b/pyproject.toml index 32102a6..e843779 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "outpostkit" -version = "0.0.68" +version = "0.0.69" description = "Python client for Outpost" readme = "README.md" license = { file = "LICENSE" }