Skip to content
This repository was archived by the owner on Feb 21, 2023. It is now read-only.

Commit 224f843

Browse files
Release version 2.0.1 (#1247)
1 parent a9825c2 commit 224f843

File tree

4 files changed

+23
-2
lines changed

4 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
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

CHANGES/1247.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Release version 2.0.1

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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+

aioredis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"
3535
VERSION = tuple(map(int_or_str, __version__.split(".")))
3636

3737
__all__ = [

0 commit comments

Comments
 (0)