From a4643c4fe8c10d763cc85b1b83b33ca075a51b6a Mon Sep 17 00:00:00 2001 From: Justin Mayhew Date: Sun, 28 May 2023 08:06:37 -0300 Subject: [PATCH] Release 2.0.2 --- src/greenstalk/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/greenstalk/__init__.py b/src/greenstalk/__init__.py index ef95b71..950c556 100644 --- a/src/greenstalk/__init__.py +++ b/src/greenstalk/__init__.py @@ -1,7 +1,7 @@ import socket from typing import Any, Dict, Iterable, List, Optional, Tuple, Union -__version__ = "2.0.1" +__version__ = "2.0.2" Address = Union[Tuple[str, int], str] Body = Union[bytes, str]