From 6115d5c55d66cdedb67ec5a0d6b52b6df52fd9d2 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Wed, 4 Oct 2023 02:36:28 -0400 Subject: [PATCH] REL: 0.12.1 This is the second release of Cycler 0.12. This fixes the previous release not shipping the `py.typed` file. --- cycler/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cycler/__init__.py b/cycler/__init__.py index ea37a2e..9794954 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.13.0.dev0" +__version__ = "0.12.1" K = TypeVar("K", bound=Hashable) L = TypeVar("L", bound=Hashable)