-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from calgray/release-0.2.0
Release 0.2.0
- Loading branch information
Showing
4 changed files
with
30 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Version History | ||
|
||
## 0.2.0 | ||
|
||
### Added<!--0.2.0--> | ||
|
||
* Added support for python 3.13 with free threading. | ||
* Added support for python 3.9 with nogil. | ||
* Added support for providing explicit background executor to decorators. | ||
* Added call and iterate benchmarks. | ||
|
||
### Changed<!--0.2.0-> | ||
|
||
* Changed `call`, `iterate` and `generate` to higher-order-function decorators. | ||
|
||
## 0.1.1 | ||
|
||
### Added<!--0.1.1--> | ||
|
||
* Added `call`, `iterate` and `generate` functions. | ||
* Added call benchmarks. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
"""Tests for the main module.""" | ||
|
||
from importlib.metadata import version | ||
|
||
from athreading import __version__ | ||
|
||
PACKAGE_VER = version("athreading") | ||
|
||
|
||
def test_version(): | ||
"""Check that the version is acceptable.""" | ||
assert __version__ == "0.1.2" | ||
def test_module_version(): | ||
"""Check that the module and package versions match.""" | ||
assert __version__ == PACKAGE_VER |