Skip to content

Commit

Permalink
lfs logger
Browse files Browse the repository at this point in the history
  • Loading branch information
aj-ya committed May 19, 2024
1 parent e4ec34c commit 24ac7b5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export OUTPOST_API_TOKEN=<your token>
import outpostkit
print(outpostkit.__version__)
```
`0.0.68`
`0.0.69`


## Create a client
Expand Down
2 changes: 1 addition & 1 deletion outpostkit/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion outpostkit/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down

0 comments on commit 24ac7b5

Please sign in to comment.