Skip to content

Commit

Permalink
bump 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mosquito committed Dec 19, 2022
1 parent 49f4ead commit 092545b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions aiohttp_asgi/resource.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import asyncio
import logging
from contextlib import contextmanager
from typing import (
Optional, Awaitable, Dict, Mapping, List, Protocol, Any,
Callable, Union, Tuple, Generator
Any, Awaitable, Callable, Coroutine, Dict, Generator, List, MutableMapping,
Optional, Tuple, Union,
)
from contextlib import contextmanager

from aiohttp import ClientRequest, WSMsgType, hdrs
from aiohttp.abc import AbstractMatchInfo, AbstractStreamWriter
from aiohttp.web import (
AbstractResource, Application, HTTPException, Request, StreamResponse,
WebSocketResponse
WebSocketResponse,
)
from yarl import URL

Expand Down
2 changes: 1 addition & 1 deletion aiohttp_asgi/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

team_email = "[email protected]"

version_info = (0, 4, 2)
version_info = (0, 4, 3)

__author__ = ", ".join("{} <{}>".format(*info) for info in author_info)
__version__ = ".".join(map(str, version_info))

0 comments on commit 092545b

Please sign in to comment.