Skip to content

Commit 72f2217

Browse files
Merge pull request #41 from python-thread/chore-readmeupdate
Chore: Version update
2 parents 889ae45 + 15956da commit 72f2217

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed

.coverage

0 Bytes
Binary file not shown.

README.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
<a href="[stars-url]">[![Stargazers][stars-shield]][stars-url]</a>
1111
<a href="[issues-url]">[![Issues][issues-shield]][issues-url]</a>
1212
<a href="[license-url]">[![BSD-3-Clause License][license-shield]][license-url]</a>
13-
<a href="[linkedin-url]">[![LinkedIn][linkedin-shield]][linkedin-url]</a>
1413

1514
</div>
1615

@@ -54,7 +53,7 @@ I hope thread will become your threading solution! ♡⸜(˶˃ ᵕ ˂˶)⸝♡
5453
<!-- GETTING STARTED -->
5554
## Getting Started
5655

57-
This is an example of how you may give instructions on setting up your project locally.
56+
This is an example of how you can set up your project locally.
5857
To get a local copy up and running follow these simple example steps.
5958

6059
### Prerequisites
@@ -63,7 +62,7 @@ To get a local copy up and running follow these simple example steps.
6362

6463
### Installation
6564

66-
_Below is an example of how you can instruct your audience on installing and setting up your app. This template doesn't rely on any external dependencies or services._
65+
_Below is an example of how you can install and use thread._
6766

6867
1. Install the package
6968
```sh
@@ -82,7 +81,7 @@ _Below is an example of how you can instruct your audience on installing and set
8281
<!-- DOCS -->
8382
## Documentation
8483

85-
Our docs are [here!](/docs/getting-started.md)
84+
Our docs are [here!](https://thread.ngjx.org)
8685

8786
<p align="right">(<a href="#readme-top">back to top</a>)</p>
8887

@@ -91,7 +90,7 @@ Our docs are [here!](/docs/getting-started.md)
9190
<!-- ROADMAP -->
9291
## Roadmap
9392

94-
- [x] v0.1.3 Release
93+
- [x] v1.0.0 Release
9594
- [ ] Bug fixes
9695
- [ ] New features
9796
- [ ] Testing
@@ -124,7 +123,7 @@ Don't forget to give the project a star! Thanks again!
124123
<!-- LICENSE -->
125124
## License
126125

127-
Distributed under the BSD-3-Clause License. See `LICENSE.txt` for more information.
126+
Distributed under the BSD-3-Clause License. See [LICENSE.txt](./LICENSE.txt) for more information.
128127

129128
<p align="right">(<a href="#readme-top">back to top</a>)</p>
130129

@@ -133,9 +132,9 @@ Distributed under the BSD-3-Clause License. See `LICENSE.txt` for more informati
133132
<!-- CONTACT -->
134133
## Contact
135134

136-
Alex - thread@ngjx.org
135+
Alex - [contact@thread.ngjx.org](mailto:contact@thread.ngjx.org)
137136

138-
Project Board: https://github.com/orgs/python-thread/projects/2
137+
Project Board: [https://github.com/orgs/python-thread/projects/2](https://github.com/orgs/python-thread/projects/2)
139138

140139
Project Link: [https://github.com/python-thread/thread](https://github.com/python-thread/thread)
141140

@@ -168,5 +167,3 @@ Project Link: [https://github.com/python-thread/thread](https://github.com/pytho
168167
[issues-url]: https://github.com/python-thread/thread/issues
169168
[license-shield]: https://img.shields.io/github/license/python-thread/thread.svg?style=for-the-badge
170169
[license-url]: https://github.com/python-thread/thread/blob/master/LICENSE.txt
171-
[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555
172-
[linkedin-url]: https://www.linkedin.com/in/ngjx

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[tool.poetry]
22
name = "thread"
3-
version = "0.1.3"
3+
version = "1.0.0"
44
description = "Threading module extension"
5-
authors = ["Alex <[email protected]>"]
5+
authors = ["Alex <[email protected]>"]
66
license = "BSD-3-Clause"
77
readme = "README.md"
88
packages = [
99
{ include = "thread", from = "src" },
1010
{ include = "thread/py.typed", from = "src" },
1111
]
1212
include = [{ path = "tests", format = "sdist" }]
13-
homepage = "https://github.com/python-thread/thread"
13+
homepage = "https://thread.ngjx.org"
1414
repository = "https://github.com/python-thread/thread"
15-
documentation = "https://github.com/python-thread/thread/blob/main/docs/getting-started.md"
15+
documentation = "https://thread.ngjx.org/docs"
1616
keywords = ["thread", "threading", "extension", "multiprocessing"]
1717
classifiers = [
1818
"Development Status :: 3 - Alpha",

src/thread/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
"""
1919

2020

21+
__version__ = '1.0.0'
22+
23+
2124
# Export Core
2225
from .thread import Thread, ParallelProcessing
2326

@@ -42,4 +45,5 @@
4245
'types',
4346
'exceptions',
4447
'Settings',
48+
'__version__',
4549
]

0 commit comments

Comments
 (0)