Skip to content

Commit 86f76c1

Browse files
committed
Bump version to 0.1.0-beta.2
1 parent 35ccc72 commit 86f76c1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "apiwrappers"
3-
version = "0.1.0-beta.1"
3+
version = "0.1.0-beta.2"
44
description = "apiwrappers is a library for building API clients that work both with regular and async code"
55
keywords = ["api", "wrapper", "http", "client"]
66
readme = "README.rst"

tests/test_drivers/test_aiohttp.py

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ async def echo(request: Request):
7070
body = json.loads(await request.text()) # type: ignore
7171
except (TypeError, ValueError):
7272
body = await request.text()
73+
7374
return Response(
7475
status=200,
7576
headers=headers,

0 commit comments

Comments
 (0)