Skip to content

Commit b6f3e17

Browse files
committed
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.
1 parent 9eb8e18 commit b6f3e17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cycler/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
# Dict, List, Union required for runtime cast calls
5252
from typing import TypeVar, Generic, Callable, Union, Dict, List, Any, overload, cast
5353

54-
__version__ = "0.12.0.dev0"
54+
__version__ = "0.12.0rc1"
5555

5656
K = TypeVar("K", bound=Hashable)
5757
L = TypeVar("L", bound=Hashable)

0 commit comments

Comments
 (0)