Skip to content

Commit 864c1fc

Browse files
chore: Increment to v1.1.0
Ref: #67
1 parent 3d5714b commit 864c1fc

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

CITATION.cff

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ identifiers:
99
value: 10.5281/zenodo.10799219
1010
description: This is the collection of archived snapshots of all versions of thread.
1111
- type: url
12-
value: https://github.com/python-thread/thread/releases/tag/v1.0.1
13-
description: The GitHub release URL of tag v1.0.1.
12+
value: https://github.com/python-thread/thread/releases/tag/v1.1.0
13+
description: The GitHub release URL of tag v1.1.0.
1414
- type: url
15-
value: https://pypi.org/project/thread/1.0.1
16-
description: The PyPI release URL of tag v1.0.1.
15+
value: https://pypi.org/project/thread/1.1.0
16+
description: The PyPI release URL of tag v1.1.0.
1717
cff-version: 1.2.0
1818
date-released: 2024-03-07
1919
keywords:
@@ -32,6 +32,6 @@ repository-code: https://github.com/python-thread/thread
3232
repository-artifact: https://pypi.org/project/thread
3333
title: thread
3434
type: software
35-
version: 1.0.1
35+
version: 1.1.0
3636
url: https://thread.ngjx.org
3737

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Our docs are [here!](https://thread.ngjx.org)
9898
<!-- ROADMAP -->
9999
## Roadmap
100100

101-
- [x] v1.0.0 Release
101+
- [x] v1.1.0 Release
102102
- [ ] Bug fixes
103103
- [ ] New features
104104
- [ ] Testing

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "thread"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
description = "Threading module extension"
55
authors = ["Alex <contact@ngjx.org>"]
66
license = "BSD-3-Clause"

src/thread/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
## Thread Library
3-
Documentation at https://thread.ngjx.org/docs/v1.0.0
3+
Documentation at https://thread.ngjx.org/docs/v1.1.0
44
55
66
---
@@ -18,7 +18,7 @@
1818
"""
1919

2020

21-
__version__ = '1.0.1'
21+
__version__ = '1.1.0'
2222

2323

2424
# Export Core

src/thread/_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
## Types
33
4-
Documentation: https://thread.ngjx.org/docs/v1.0.0
4+
Documentation: https://thread.ngjx.org/docs/v1.1.0
55
"""
66

77
from typing import Any, Literal, Callable, Union, Sized

src/thread/decorators/_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
## Processor
33
4-
Documentation: https://thread.ngjx.org/docs/v1.0.0
4+
Documentation: https://thread.ngjx.org/docs/v1.1.0
55
"""
66

77
from functools import wraps

src/thread/decorators/_threaded.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
## Threaded
33
4-
Documentation: https://thread.ngjx.org/docs/v1.0.0
4+
Documentation: https://thread.ngjx.org/docs/v1.1.0
55
"""
66

77
from functools import wraps

src/thread/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
## Thread Exceptions
33
4-
Documentation: https://thread.ngjx.org/docs/v1.0.0
4+
Documentation: https://thread.ngjx.org/docs/v1.1.0
55
"""
66

77
import traceback

src/thread/thread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Thread: ...
88
class ParallelProcessing: ...
99
```
1010
11-
Documentation: https://thread.ngjx.org/docs/v1.0.0
11+
Documentation: https://thread.ngjx.org/docs/v1.1.0
1212
"""
1313

1414
import sys

0 commit comments

Comments
 (0)