From 73efa92c8080dafd7137a959087738b297d1bd11 Mon Sep 17 00:00:00 2001 From: AlexNg Date: Tue, 12 Mar 2024 18:05:00 +0800 Subject: [PATCH 1/2] chore: Increment version --- pyproject.toml | 2 +- src/thread/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d7ee5f9..8466e08 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" 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 From a98787af97e1dc72f27792ca5e1733bc06a8f5ab Mon Sep 17 00:00:00 2001 From: AlexNg Date: Tue, 12 Mar 2024 18:05:14 +0800 Subject: [PATCH 2/2] chore: Add typed classifier --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 8466e08..0a33f26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", + "Typing :: Typed", ] [tool.poetry.urls]