Skip to content

Commit

Permalink
release - prepare 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
commonism committed Jul 12, 2024
1 parent 36076ec commit f4d8ba0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aiopenapi3/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.0"
__version__ = "0.7.0a1"
2 changes: 1 addition & 1 deletion tests/error_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_response_error(httpx_mock, with_paths_response_error):
str(e.value)

httpx_mock.add_response(headers={"Content-Type": "application/json"}, status_code=201, json="ok")
with pytest.raises(HTTPStatusError):
with pytest.raises(HTTPStatusError) as e:
api._.test()
str(e.value)

Expand Down

0 comments on commit f4d8ba0

Please sign in to comment.