Skip to content

Commit 94e4cc3

Browse files
author
user
committed
2.1.2: minor update
1 parent 01f254c commit 94e4cc3

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 2.1.2
4+
5+
- Minor patch for typo
6+
7+
38
## 2.1.1
49

510
- Handling `ModuleNotFoundError` exception when importing `aioredis`

RSO/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.1.1"
1+
__version__ = "2.1.2"

RSO/asyncio/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async def save(self, redis: T_REDIS_PIPE):
3232
continue
3333
await index_class.save(pipe, self)
3434

35-
if not isinstance(redis, (Pipeline, Pipeline2)):
35+
if not isinstance(redis, PIPE_CLS):
3636
await pipe.execute()
3737

3838
@classmethod

0 commit comments

Comments
 (0)