diff --git a/pyproject.toml b/pyproject.toml index d7ee5f9..0a33f26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "thread" -version = "1.0.0" +version = "1.0.1" description = "Threading module extension" authors = ["Alex "] license = "BSD-3-Clause" @@ -21,6 +21,7 @@ classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", + "Typing :: Typed", ] [tool.poetry.urls] diff --git a/src/thread/__init__.py b/src/thread/__init__.py index 4c9062a..ee6bf80 100644 --- a/src/thread/__init__.py +++ b/src/thread/__init__.py @@ -18,7 +18,7 @@ """ -__version__ = '1.0.0' +__version__ = '1.0.1' # Export Core