Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a876b4d commit 37e5d61Copy full SHA for 37e5d61
4 files changed
CHANGES.rst
@@ -14,12 +14,21 @@ Changelog
14
15
.. towncrier release notes start
16
17
-3.6.1 (2019-09-15)
+3.6.1 (2019-09-19)
18
==================
19
20
+Features
21
+--------
22
+
23
+- Compatibility with Python 3.8.
24
+ `#4056 <https://github.com/aio-libs/aiohttp/issues/4056>`_
25
26
27
Bugfixes
28
--------
29
30
+- correct some exception string format
31
+ `#4068 <https://github.com/aio-libs/aiohttp/issues/4068>`_
32
- Emit a warning when ``ssl.OP_NO_COMPRESSION`` is
33
unavailable because the runtime is built against
34
an outdated OpenSSL.
CHANGES/4056.feature
CHANGES/4068.bugfix
aiohttp/__init__.py
@@ -1,4 +1,4 @@
1
-__version__ = '3.6.1b4'
+__version__ = '3.6.1'
2
3
from typing import Tuple # noqa
4
0 commit comments