diff --git a/CHANGES b/CHANGES index f0d75a45ce..a586e8d9ec 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,4 @@ + * Mark `redis.asyncio` as public in the top-level __init__.py * Move doctests (doc code examples) to main branch * Update `ResponseT` type hint * Allow to control the minimum SSL version diff --git a/redis/__init__.py b/redis/__init__.py index 94324a0de8..451d890a37 100644 --- a/redis/__init__.py +++ b/redis/__init__.py @@ -56,6 +56,7 @@ def int_or_str(value): VERSION = tuple([99, 99, 99]) __all__ = [ + "asyncio", "AuthenticationError", "AuthenticationWrongNumberOfArgsError", "BlockingConnectionPool",