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

Commit

Permalink
Release version 2.0.1 (#1247)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-Chen-Wang committed Dec 21, 2021
1 parent a9825c2 commit 224f843
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,22 @@
# Changelog

## 2.0.1 - (2021-12-20)

# Changelog
### Features

- Added Python 3.10 to CI & Updated the Docs
(see #1160)
- Enable mypy in CI (see #1101)
- Synchronized reading the responses from a connection
(see #1106)

### Fixes

- Remove __del__ from Redis (Fixes #1115)
(see #1227)
- fix socket.error raises (see #1129)
- Fix buffer is closed error when using PythonParser class
(see #1213)

## 2.0.0 - (2021-03-18)

Expand Down
1 change: 1 addition & 0 deletions CHANGES/1247.misc
@@ -0,0 +1 @@
Release version 2.0.1
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -31,6 +31,10 @@ The easiest way to install aioredis is by using the package on PyPi:

pip install aioredis

Recommended with hiredis for performance and stability reasons:

pip install hiredis

## Requirements

- Python 3.6+
Expand Down
2 changes: 1 addition & 1 deletion aioredis/__init__.py
Expand Up @@ -31,7 +31,7 @@ def int_or_str(value):
return value


__version__ = "2.0.0"
__version__ = "2.0.1"
VERSION = tuple(map(int_or_str, __version__.split(".")))

__all__ = [
Expand Down

0 comments on commit 224f843

Please sign in to comment.