Skip to content

Commit

Permalink
REL: v0.12.0rc1
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
QuLogic committed Sep 28, 2023
1 parent 9eb8e18 commit b6f3e17
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.0.dev0"
__version__ = "0.12.0rc1"

K = TypeVar("K", bound=Hashable)
L = TypeVar("L", bound=Hashable)
Expand Down

0 comments on commit b6f3e17

Please sign in to comment.