Skip to content

Commit

Permalink
Merge pull request #81 from python-thread/chore/version-bump
Browse files Browse the repository at this point in the history
Bump version to v2.0.1
  • Loading branch information
caffeine-addictt committed Apr 28, 2024
2 parents 0af8777 + 096bc08 commit edfba3d
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "thread"
version = "2.0.0"
version = "2.0.1"
description = "Threading module extension"
authors = ["Alex <contact@ngjx.org>"]
license = "BSD-3-Clause"
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions src/thread/__init__.py
Original file line number Diff line number Diff line change
@@ -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
---
Expand All @@ -18,7 +18,7 @@
"""


__version__ = '2.0.0'
__version__ = '2.0.1'


# Export Core
Expand Down
2 changes: 1 addition & 1 deletion src/thread/_types.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/thread/decorators/_processor.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/thread/decorators/_threaded.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/thread/exceptions.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/thread/thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit edfba3d

Please sign in to comment.