Skip to content

Commit a0b4e23

Browse files
committed
Minor bug fix
1 parent 041fe75 commit a0b4e23

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
GITHUB_TOKEN: ${{ github.token }}
8080
run: >-
8181
gh release create
82-
'v0.1.8'
82+
'v0.1.9'
8383
--repo '${{ github.repository }}'
8484
--notes ""
8585
- name: Upload artifact signatures to GitHub Release
@@ -90,5 +90,5 @@ jobs:
9090
# sigstore-produced signatures and certificates.
9191
run: >-
9292
gh release upload
93-
'v0.1.8' dist/**
93+
'v0.1.9' dist/**
9494
--repo '${{ github.repository }}'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
]
1111
description = "A client facing API for interacting with the WeCo AI function builder service."
1212
readme = "README.md"
13-
version = "0.1.8"
13+
version = "0.1.9"
1414
license = {text = "MIT"}
1515
requires-python = ">=3.8"
1616
dependencies = ["asyncio", "httpx[http2]", "pillow"]

weco/client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ def __init__(self, api_key: Union[str, None] = None, timeout: float = 120.0, htt
6868
self.http2 = http2
6969
self.timeout = timeout
7070
self.base_url = "https://function.api.weco.ai"
71+
7172
# Setup clients
7273
self.client = httpx.Client(http2=http2, timeout=timeout)
7374
self.async_client = httpx.AsyncClient(http2=http2, timeout=timeout)

0 commit comments

Comments
 (0)