From 7aebbdfdf6935937a0e3e4d545eb486b845d5f24 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Thu, 28 Sep 2023 19:20:05 -0400 Subject: [PATCH] REL: 0.12.0 This is the first release of Cycler 0.12. The major new feature in this release is the addition of type hints. Furthermore, the minimum supported version of Python is now 3.8. --- cycler/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cycler/__init__.py b/cycler/__init__.py index 792e928..f412aef 100644 --- a/cycler/__init__.py +++ b/cycler/__init__.py @@ -51,7 +51,7 @@ # Dict, List, Union required for runtime cast calls from typing import TypeVar, Generic, Callable, Union, Dict, List, Any, overload, cast -__version__ = "0.12.0rc2" +__version__ = "0.12.0" K = TypeVar("K", bound=Hashable) L = TypeVar("L", bound=Hashable)