diff --git a/redis/asyncio/client.py b/redis/asyncio/client.py index 8a8f54dc9c..9f3bfe1ae1 100644 --- a/redis/asyncio/client.py +++ b/redis/asyncio/client.py @@ -168,7 +168,7 @@ class initializer. In the case of conflicting arguments, querystring warnings.warn( DeprecationWarning( '"auto_close_connection_pool" is deprecated ' - "since version 5.0.0. " + "since version 5.0.1. " "Please create a ConnectionPool explicitly and " "provide to the Redis() constructor instead." ) @@ -247,7 +247,7 @@ def __init__( warnings.warn( DeprecationWarning( '"auto_close_connection_pool" is deprecated ' - "since version 5.0.0. " + "since version 5.0.1. " "Please create a ConnectionPool explicitly and " "provide to the Redis() constructor instead." ) @@ -566,7 +566,7 @@ async def aclose(self, close_connection_pool: Optional[bool] = None) -> None: ): await self.connection_pool.disconnect() - @deprecated_function(version="5.0.0", reason="Use aclose() instead", name="close") + @deprecated_function(version="5.0.1", reason="Use aclose() instead", name="close") async def close(self, close_connection_pool: Optional[bool] = None) -> None: """ Alias for aclose(), for backwards compatibility @@ -804,12 +804,12 @@ async def aclose(self): self.patterns = {} self.pending_unsubscribe_patterns = set() - @deprecated_function(version="5.0.0", reason="Use aclose() instead", name="close") + @deprecated_function(version="5.0.1", reason="Use aclose() instead", name="close") async def close(self) -> None: """Alias for aclose(), for backwards compatibility""" await self.aclose() - @deprecated_function(version="5.0.0", reason="Use aclose() instead", name="reset") + @deprecated_function(version="5.0.1", reason="Use aclose() instead", name="reset") async def reset(self) -> None: """Alias for aclose(), for backwards compatibility""" await self.aclose()