We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb708f8 commit a01e433Copy full SHA for a01e433
CHANGES.rst
@@ -1,6 +1,11 @@
1
CHANGES
2
=======
3
4
+3.0.1 (2018-10-09)
5
+------------------
6
+
7
+- More aggressive typing (#48)
8
9
3.0.0 (2018-05-05)
10
------------------
11
async_timeout/__init__.py
@@ -2,10 +2,10 @@
import sys
from types import TracebackType
-from typing import Optional, Type, Any
+from typing import Optional, Type, Any # noqa
-__version__ = '3.0.0'
+__version__ = '3.0.1'
PY_37 = sys.version_info >= (3, 7)
0 commit comments