From 1414bcc727f4eaf81a7311158cdfe43a9dd8763c Mon Sep 17 00:00:00 2001 From: Ajeya Bhat Date: Wed, 24 Apr 2024 15:46:25 +0530 Subject: [PATCH] version bump --- README.md | 2 +- outpostkit/__init__.py | 2 +- outpostkit/client.py | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a7693f9..fd404a8 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ export OUTPOST_API_TOKEN= import outpostkit print(outpostkit.__version__) ``` -`0.0.55` +`0.0.56` ## Create a client diff --git a/outpostkit/__init__.py b/outpostkit/__init__.py index 87e59b0..5e544f5 100644 --- a/outpostkit/__init__.py +++ b/outpostkit/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.55" +__version__ = "0.0.56" 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 e02b533..0bc0dbc 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.55", + "User-Agent": "outpost-python/0.0.56", } if ( diff --git a/pyproject.toml b/pyproject.toml index e92fa53..78f19e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "outpostkit" -version = "0.0.55" +version = "0.0.56" description = "Python client for Outpost" readme = "README.md" license = { file = "LICENSE" }