From b6f3e1748cbd7ea064bd9718d355f21b6c49fa58 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Wed, 27 Sep 2023 22:17:58 -0400 Subject: [PATCH] REL: v0.12.0rc1 This is the first release candidate for Cycler 0.12.0. 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 b0a1562..5ae88d7 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.0.dev0" +__version__ = "0.12.0rc1" K = TypeVar("K", bound=Hashable) L = TypeVar("L", bound=Hashable)