From 4cedef7c62419de606aca7464a2e3247fdb0dd3c Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Sat, 29 Oct 2022 00:33:57 +0100 Subject: [PATCH] Release 2.12 (#763) --- CHANGES.txt | 6 ++++++ aiohttp_session/__init__.py | 2 +- changes/701.fix | 1 - 3 files changed, 7 insertions(+), 2 deletions(-) delete mode 100644 changes/701.fix diff --git a/CHANGES.txt b/CHANGES.txt index 146f65ec..ee54cbcf 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,11 @@ .. towncrier release notes start +2.12.0 (2022-10-28) +=================== + +* Migrated from `aioredis` to `redis` (if using redis without installing + `aiohttp-session[aioredis]` then it will be necessary to manually install `redis`). + 2.11.0 (2021-01-31) =================== diff --git a/aiohttp_session/__init__.py b/aiohttp_session/__init__.py index 49b44781..abbf672b 100644 --- a/aiohttp_session/__init__.py +++ b/aiohttp_session/__init__.py @@ -1,6 +1,6 @@ """User sessions for aiohttp.web.""" -__version__ = "2.11.0" +__version__ = "2.12.0" import abc import json diff --git a/changes/701.fix b/changes/701.fix deleted file mode 100644 index 1c8b1368..00000000 --- a/changes/701.fix +++ /dev/null @@ -1 +0,0 @@ -Replace aioredis with redis 4.3 or higher in favor of the official asyncio support