This repository was archived by the owner on Feb 21, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +23
-2
lines changed
Expand file tree Collapse file tree 4 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 1+ # Changelog
12
3+ ## 2.0.1 - (2021-12-20)
24
3- # Changelog
5+ ### Features
6+
7+ - Added Python 3.10 to CI & Updated the Docs
8+ (see #1160 )
9+ - Enable mypy in CI (see #1101 )
10+ - Synchronized reading the responses from a connection
11+ (see #1106 )
12+
13+ ### Fixes
14+
15+ - Remove __ del__ from Redis (Fixes #1115 )
16+ (see #1227 )
17+ - fix socket.error raises (see #1129 )
18+ - Fix buffer is closed error when using PythonParser class
19+ (see #1213 )
420
521## 2.0.0 - (2021-03-18)
622
Original file line number Diff line number Diff line change 1+ Release version 2.0.1
Original file line number Diff line number Diff line change @@ -31,6 +31,10 @@ The easiest way to install aioredis is by using the package on PyPi:
3131
3232 pip install aioredis
3333
34+ Recommended with hiredis for performance and stability reasons:
35+
36+ pip install hiredis
37+
3438## Requirements
3539
3640- Python 3.6+
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def int_or_str(value):
3131 return value
3232
3333
34- __version__ = "2.0.0 "
34+ __version__ = "2.0.1 "
3535VERSION = tuple (map (int_or_str , __version__ .split ("." )))
3636
3737__all__ = [
You can’t perform that action at this time.
0 commit comments