diff --git a/CITATION.cff b/CITATION.cff index 4783c43..912b0b4 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -9,11 +9,11 @@ identifiers: value: 10.5281/zenodo.10799219 description: This is the collection of archived snapshots of all versions of thread. - type: url - value: https://github.com/python-thread/thread/releases/tag/v2.0.0 - description: The GitHub release URL of tag v2.0.0. + value: https://github.com/python-thread/thread/releases/tag/v2.0.1 + description: The GitHub release URL of tag v2.0.1. - type: url - value: https://pypi.org/project/thread/2.0.0 - description: The PyPI release URL of tag v2.0.0. + value: https://pypi.org/project/thread/2.0.1 + description: The PyPI release URL of tag v2.0.1. cff-version: 1.2.0 date-released: 2024-03-07 keywords: @@ -32,6 +32,6 @@ repository-code: https://github.com/python-thread/thread repository-artifact: https://pypi.org/project/thread title: thread type: software -version: 2.0.0 +version: 2.0.1 url: https://thread.ngjx.org diff --git a/pyproject.toml b/pyproject.toml index d4b5930..13e1c8e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "thread" -version = "2.0.0" +version = "2.0.1" description = "Threading module extension" authors = ["Alex "] license = "BSD-3-Clause" @@ -30,7 +30,7 @@ classifiers = [ [tool.poetry.urls] Homepage = "https://thread.ngjx.org" -Documentation = "https://thread.ngjx.org/docs/v2.0.0" +Documentation = "https://thread.ngjx.org/docs/v2.0.1" Source = "https://github.com/python-thread/thread" Download = "https://pypi.org/project/thread/#files" "Release Notes" = "https://github.com/python-thread/thread/releases" diff --git a/src/thread/__init__.py b/src/thread/__init__.py index 1ab7af1..fefb683 100644 --- a/src/thread/__init__.py +++ b/src/thread/__init__.py @@ -1,6 +1,6 @@ """ ## Thread Library -Documentation at https://thread.ngjx.org/docs/2.0.0 +Documentation at https://thread.ngjx.org/docs/2.0.1 --- @@ -18,7 +18,7 @@ """ -__version__ = '2.0.0' +__version__ = '2.0.1' # Export Core diff --git a/src/thread/_types.py b/src/thread/_types.py index 8642708..9fa2921 100644 --- a/src/thread/_types.py +++ b/src/thread/_types.py @@ -1,7 +1,7 @@ """ ## Types -Documentation: https://thread.ngjx.org/docs/v2.0.0 +Documentation: https://thread.ngjx.org/docs/v2.0.1 """ from typing import Any, Literal, Callable, Union, Sized diff --git a/src/thread/decorators/_processor.py b/src/thread/decorators/_processor.py index 50dabc0..92a90d3 100644 --- a/src/thread/decorators/_processor.py +++ b/src/thread/decorators/_processor.py @@ -1,7 +1,7 @@ """ ## Processor -Documentation: https://thread.ngjx.org/docs/v2.0.0 +Documentation: https://thread.ngjx.org/docs/v2.0.1 """ from functools import wraps diff --git a/src/thread/decorators/_threaded.py b/src/thread/decorators/_threaded.py index 8c04ee0..4d2d00d 100644 --- a/src/thread/decorators/_threaded.py +++ b/src/thread/decorators/_threaded.py @@ -1,7 +1,7 @@ """ ## Threaded -Documentation: https://thread.ngjx.org/docs/v2.0.0 +Documentation: https://thread.ngjx.org/docs/v2.0.1 """ from functools import wraps diff --git a/src/thread/exceptions.py b/src/thread/exceptions.py index a44160a..b789f26 100644 --- a/src/thread/exceptions.py +++ b/src/thread/exceptions.py @@ -1,7 +1,7 @@ """ ## Thread Exceptions -Documentation: https://thread.ngjx.org/docs/v2.0.0 +Documentation: https://thread.ngjx.org/docs/v2.0.1 """ import traceback diff --git a/src/thread/thread.py b/src/thread/thread.py index 0aa7590..9760ed6 100644 --- a/src/thread/thread.py +++ b/src/thread/thread.py @@ -8,7 +8,7 @@ class Thread: ... class ConcurrentProcessing: ... ``` -Documentation: https://thread.ngjx.org/docs/v2.0.0 +Documentation: https://thread.ngjx.org/docs/v2.0.1 """ import sys