Skip to content

Commit

Permalink
REL: 0.12.0
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
QuLogic committed Sep 28, 2023
1 parent ab3cfe8 commit 7aebbdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cycler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7aebbdf

Please sign in to comment.