v1.1.0 feature/async-httpx #2

Merged
eriks merged 5 commits from feature/async-httpx into main 2024-03-10 12:22:06 +02:00
9 changed files with 230 additions and 119 deletions
Showing only changes of commit 808384414b - Show all commits

View File

@ -42,7 +42,7 @@ version = { attr = "api_client.__version__" }
[tool.bumpversion]
current_version = "1.0.1"
current_version = "1.1.0"
commit = true
tag = true
tag_name = "v{new_version}"

View File

@ -1,5 +1,5 @@
from .async_client import BaseAPIClient as AsyncClient
from .sync_client import BaseAPIClient as SyncClient
__version__ = "1.0.1"
__version__ = "1.1.0"
__all__ = ["SyncClient", "AsyncClient"]